core-install

core-install is a skill for Claude Code, Codex from djangonavarro220/agentic-life-os. It costs 15 tokens per session (1,960 once invoked), scanned A, original, MIT.

A guided installer for Agentic Life OS, a helper that connects an agent runtime to its existing personal systems without taking ownership of them.

In plain words
What is it for?
Use it to install or register Life OS, choose how it should work with existing calendars and tasks, and make its umbrella skill available in the current runtime.
Why use it?
It checks the runtime and asks before changing runtime settings, scheduled jobs, delivery, skills, or memory, helping prevent unsafe setup changes.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for openclaw. Also seen: built for openclaw.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python3 scripts/lifeos.py install --runtime <hermes|openclaw|unknown>.

Good fit Use it to install or register Life OS, choose how it should work with existing calendars and tasks, and make its umbrella skill available in the current runtime.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/djangonavarro220/agentic-life-os
agentmods
npx agentmods add skills/djangonavarro220/agentic-life-os/core-install

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for core-install

README.md
[![agentmods](https://agentmods.dev/badge/skills/djangonavarro220/agentic-life-os/core-install/github.svg)](https://agentmods.dev/skills/djangonavarro220/agentic-life-os/core-install)
Your own site
<a href="https://agentmods.dev/skills/djangonavarro220/agentic-life-os/core-install"><img src="https://agentmods.dev/badge/skills/djangonavarro220/agentic-life-os/core-install/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for core-install

Your own site · 80×15
<a href="https://agentmods.dev/skills/djangonavarro220/agentic-life-os/core-install"><img src="https://agentmods.dev/badge/skills/djangonavarro220/agentic-life-os/core-install.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 15 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,960 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00015 $0.01960
Opus 5 $0.00008 $0.00980
Sonnet 5 $0.00003 $0.00392
Haiku 4.5 $0.00002 $0.00196

Measured 11d ago against content hash 7edf2034412d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

core-install scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/life-os/skills/core-install/SKILL.md · 166 lines

How it starts

The opening of the file, as written. The whole thing — 166 lines — stays where its author put it; the contents beside it link to each section on GitHub.

core-install

Mandatory integrity contract

Before acting, load and follow ../../references/data-integrity.md. Its provenance, missing-value, correction-history, defensive-write, backup, and recovery rules are mandatory for this subskill.

Install Agentic Life OS private state and make the umbrella skill visible to the current runtime. Install is a conversation and inspection workflow, not a blind script. Life OS is a helper over the runtime: it records where things live and how to access them, rather than becoming the owner of calendars, tasks, memory, crons, vaults, or delivery.

Trigger

Use when the user asks to install, set up, register, enable, connect, or try Agentic Life OS in Hermes, OpenClaw, or another agent runtime.

Principle

The helper may create private Life OS state files. The LLM owns the install decision flow:

  • detect the active runtime
  • check whether the skill is already visible
  • discover existing runtime-owned systems
  • explain bridge/import/migration choices
  • ask before changing runtime-owned config, crons, delivery, skills, or memory

Do not add helper-script heuristics for runtime discovery. Runtime installations differ too much, and a script guessing paths is how you build a brittle little monster.

Procedure

  1. Detect the current runtime from command availability, session context, repo docs, and user request.
  2. Load only the matching runtime adapter for the active runtime:
    • shared runtime adapter: ../../runtimes/<runtime>.md
    • core-install adapter: runtimes/<runtime>.md
  3. Do not load both Hermes and OpenClaw adapters for a single install. Keep runtime-specific instructions in those Markdown files, not inline here.
  4. Check whether the umbrella life-os skill is already visible to that runtime.
  5. If it is visible, do not re-register it. Run only private state install/doctor from the repo checkout.
  6. If it is not visible, ask the user which registration scope and install mode they want using the runtime adapter:
    • symlink for live development
    • copy for a static snapshot
    • profile/workspace/agent/shared scope depending on runtime
  7. Before proposing any integration, investigate runtime-owned systems with native runtime commands or docs:
    • tasks or background-task ledger
    • crons, schedules, heartbeat, reminders, hooks, standing orders
    • memory and vault/secrets systems
    • delivery routes and messaging channels
    • tools, sandboxing, model/provider config
    • profiles, agents, workspaces, or channel bindings
  8. Present options before changing anything:
    • leave the runtime system alone and only read it when relevant
    • record a pointer/reference and bridge through runtime-native tools
    • import selected pointers, access notes, or Life-OS-specific state into config
    • migrate/reconnect references when moving between runtimes, using runtime-native stores for real data where possible
  9. Ask approval before creating any bridge, import, migration, cron, delivery route, global skill registration, config edit, or destructive change.
  10. Run private state install and doctor.
  11. If doctor.semantic_health.complete is false, ask the next pending setup question from python3 scripts/lifeos.py next-question. The install must ask for the autonomy mode in plain human language, not just technical names; recommend safe-internal if the user is unsure.
  12. Save each approved answer with python3 scripts/lifeos.py answer <key> '<answer or runtime pointer>' --kind <reuse_existing|manual_only|propose_change|disabled|custom>.
  13. Autonomy modes are install-wide policy:
  • approval-first: ask before every write or external/runtime change.
  • safe-internal: default; allow read-only inspection and Life OS private tracking writes, ask before external/runtime/destructive/public changes.
  • trusted-local: allow clearly scoped reversible local maintenance, still ask before external/destructive/public/account changes.
  • allow-all: proceed only within the explicit saved policy and runtime safety layer; still escalate dangerous, credential, legal, destructive, or external-contact actions.
  1. Review meeting crons are part of setup completion. Either create/reuse the approved runtime cron jobs for review meetings, or save the user's explicit manual-only/disabled opt-out. Do not claim setup complete while this is undecided.
  2. Repeat doctor -> next-question -> ask -> answer until semantic health is complete, or until the user explicitly stops setup.
  3. Use python3 scripts/lifeos.py plan to show runtime cron templates and remaining steps without creating jobs.
  4. Verify with runtime-native skill visibility commands and lifeos.py doctor.

Read the full file on GitHub · 166 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 166 lines · 15 tokens per session scan A 7edf2034412d

Subscribe to this mod's changes

core-install is a skill published in the GitHub repository djangonavarro220/agentic-life-os (11 stars, last pushed 1mo ago), licensed MIT. It adds 15 tokens to every session and 1,960 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

insight-error-page

Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…

vercel/next.js · 83 tokens

next-cache-components-optimizer

Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…

vercel/next.js · 170 tokens

next-partial-prefetching-adoption

Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…

vercel/next.js · 103 tokens