بنقرة واحدة
altevra-core
Core skill for using Altevra — the local-first Agent OS. Read this at session start.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Core skill for using Altevra — the local-first Agent OS. Read this at session start.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
| name | altevra-core |
| description | Core skill for using Altevra — the local-first Agent OS. Read this at session start. |
| allowed-tools | [] |
Version: 0.5.0 Required: Yes — all agents must bootstrap with Altevra at session start.
Altevra is a local-first Agent OS. It gives AI tools a shared, fresh, searchable, auditable context layer.
It provides: memory, project context, tasks, goals, decisions, skills, capabilities, hooks, research, event history, last updates, connector sync, prompt generation, and tool setup automation.
Core promise: Every agent always knows what changed, what matters, and how to use Altevra.
At the start of every session, execute:
altevra agent bootstrap --tool {tool_name} --project {project} --json
Or via MCP: get_agent_bootstrap_packet(tool_name="{tool_name}", project="{project}")
This returns:
skill_freshness — are your skills up to date?setup_status — are hooks/managed files installed?last_updates — what changed since your last session?warnings — anything requiring immediate attentionrecommended_next_action — what to do first# What changed since last session?
altevra updates --project {project} --since last-session --json
# Are my skills current?
altevra skill check --all
# Run session startup hook
altevra hook run session_start --tool {tool_name} --project {project} --json
# Connect tool to project (dry-run first)
altevra connect --tool {tool_name} --project {project} --dry-run
# Get project context
altevra context --project {project} --json
altevra updates.altevra skill check --all and alert user.altevra agent bootstrap --jsonaltevra connect.altevra context save-decision --title "..." --content "..."altevra hook run session_end --tool {tool_name} --project {project}altevra report-gap --description "...".At startup, verify your installed skill is current:
altevra skill check altevra-core --installed-version {your_version}
If outdated → run altevra skill refresh altevra-core or altevra connect --tool {tool_name}.
| Tool | Description |
|---|---|
get_agent_bootstrap_packet | Full session bootstrap — call at every session start |
get_last_updates | What changed? Since when? |
check_altevra_skill_version | Am I running a fresh skill? |
get_project_context | Current project state, goals, decisions |
search_memory | Search vault documents |
save_decision | Record a project decision |
get_active_tasks | Current task list |
run_hook | Run any registered hook |
Start of session:
get_agent_bootstrap_packet (or altevra agent bootstrap --json)skill_freshness — if outdated, warn and suggest refreshlast_updates — read what changedactive_task — what are you working on?warnings — any blockers?During work:
ALTEVRA_MANAGEDEnd of session:
altevra hook run session_endThese are planned but not in v0.1:
altevra context commandaltevra search commandaltevra ingest commandUse what is available. Report gaps with altevra report-gap when you hit missing features.