Loading...
Loading...
Sync eve-skillpacks with latest eve-horizon changes. Goes deep into plans, code, and commits to understand what shipped — then cascades to skills and reference docs.
npx skill4agent add eve-horizon/eve-skillpacks sync-horizondocs/system/.sync-state.json.sync-state.json#eve_horizon_path.sync-map.jsonPlanned (Not Implemented)What's nexteve-work/eve-read-eve-docs/SKILL.mdHORIZON_PATH="$(jq -r '.eve_horizon_path' .sync-state.json)"
LAST_SYNCED_COMMIT="$(jq -r '.last_synced_commit' .sync-state.json)"
test -n "$HORIZON_PATH" && test "$HORIZON_PATH" != "null"
git -C "$HORIZON_PATH" rev-parse --is-inside-work-treegit -C "$HORIZON_PATH" log --oneline "$LAST_SYNCED_COMMIT"..HEADfeat:fix:docs:chore:refactor:git -C "$HORIZON_PATH" diff --stat "$LAST_SYNCED_COMMIT"..HEAD -- docs/plans/sed -n '1,20p' "$HORIZON_PATH/docs/plans/<plan-file>.md"ImplementedCompleteDoneIn ProgressPartially ImplementedProposedPlanDraftReady to build# New/changed/removed CLI commands
git -C "$HORIZON_PATH" diff --stat "$LAST_SYNCED_COMMIT"..HEAD -- packages/cli/src/commands/
# New DB migrations (table/column names reveal capability shape)
git -C "$HORIZON_PATH" diff --stat "$LAST_SYNCED_COMMIT"..HEAD -- packages/db/migrations/
# Key package changes (new modules, removed modules)
git -C "$HORIZON_PATH" diff --stat "$LAST_SYNCED_COMMIT"..HEAD -- packages/shared/src/ packages/api/src/ packages/worker/src/ packages/gateway/src/ --stat-name-width=120 | head -50git -C "$HORIZON_PATH" diff --stat "$LAST_SYNCED_COMMIT"..HEAD -- docs/system/ AGENTS.mdfind "$HORIZON_PATH/packages/cli/src/commands" -maxdepth 1 -name '*.ts' -print | sortCapability: <name>
Plan: docs/plans/<file>.md (status: Implemented)
Feat commits: <matching commit hashes>
Code signal: <new CLI commands, new migrations, new/removed modules>
System doc: <updated/created/unchanged>
Scope: <which platform areas this touches>
One-line summary: <what this capability does, from the plan header>eve-read-eve-docseve-work/eve-read-eve-docs/SKILL.mdreference_docs.sync-map.jsoneve-work/eve-read-eve-docs/SKILL.md.sync-map.jsonskill_triggerscomposite_triggerseve-se/eve-manifest-authoringeve-se/eve-deploy-debuggingeve-se/eve-auth-and-secretseve-work/eve-agent-memoryeve-design/eve-fullstack-app-designUpdate <target-file>: <capability name>.sync-state.json#eve_horizon_path<last_synced_commit>..HEADUpdate sync state and produce reporteve-work/eve-read-eve-docsRun state-today compliance scan for eve-read-eve-docsValidate progressive-access routing in eve-read-eve-docs/SKILL.mdUpdate .sync-map.json with any new reference doc mappingsYour primary sources are shipped plans (marked Implemented/Complete) and code changes. System docs are secondary — they may lag behind or be absent.
- Read the plan(s) listed in your task — understand what shipped and why.
- Read the current reference doc you're updating.
- Run the git diff for relevant source files (code, system docs).
- If the plan references specific CLI commands or APIs, verify they exist:
bashtest -f "$HORIZON_PATH/packages/cli/src/commands/<name>.ts"- Distill the shipped capability into the reference doc:
- What it does (from plan + code)
- How to use it (CLI commands, manifest config, API calls)
- Key constraints or requirements
- Exclude roadmap content. Only document what is implemented.
- Edit the existing file; do not rewrite from scratch.
- Preserve existing structure, voice, and formatting.
- Read the plan(s) that describe this capability.
- Check for any system doc coverage at
(may not exist).$HORIZON_PATH/docs/system/<name>.md- Read the CLI command source at
if relevant.$HORIZON_PATH/packages/cli/src/commands/<name>.ts- Create a reference doc that follows the conventions of existing references in
.eve-work/eve-read-eve-docs/references/- Include: purpose, CLI commands/flags, manifest config if relevant, key behaviors, constraints.
- Keep it concise and agent-actionable. These are distillations, not documentation copies.
- State-today only — no planned/roadmap content.
Your primary sources are shipped plans and code changes.
- Read the plan(s) listed in your task.
- Read the current SKILL.md you're updating.
- Update with new commands, changed workflows, or new capabilities.
- Remove stale content that references deprecated features.
- Keep state-today only. Ensure progressive disclosure.
- Maintain imperative voice and conciseness.
- Edit the existing file; do not rewrite from scratch.
This worker updates the eve-read-eve-docs SKILL.md routing, index, and coverage matrix.
- Read the current
.eve-work/eve-read-eve-docs/SKILL.md- For each new reference doc created by other workers, add:
- A Task Router entry describing when to load it
- An Index entry with the file path and one-line description
- An Intent Coverage Matrix row if it serves a distinct user intent
- For each removed capability, clean up stale routing entries.
- Add any new trigger keywords to the YAML frontmatter.
- Maintain alphabetical or logical ordering within sections.
This is a cross-cutting skill that spans multiple platform primitives. Your job is to validate that the skill's claims match current platform reality.
- Read the SKILL.md and all files in its
directory.references/- Read the shipped plan(s) listed in your task for context on what changed.
- List current CLI command modules:
bashfind "$HORIZON_PATH/packages/cli/src/commands" -maxdepth 1 -name '*.ts' -print | sort- Scan the skill for stale claims:
- "No dedicated X" / "X not available" / "not yet supported" — check if X now exists.
- "Current Gaps" or "Workarounds" sections — verify each gap is still a gap.
- Decision tables or comparison matrices — check for missing rows.
- References to removed features (e.g., inference/ollama/managed-models).
- If stale claims are found, update the skill. Add new primitives. Remove false gaps.
- Keep state-today only. Maintain imperative voice and conciseness.
- Edit existing files; do not rewrite from scratch.
Report what was stale and what you corrected.
Updateto reflect new mappings discovered during this sync..sync-map.json
- Read the current
..sync-map.json- For each new reference doc created, add a
entry mapping the source files to the target.reference_docs- For each new skill trigger relationship discovered, add a
entry.skill_triggers- For removed source docs, clean up stale mappings.
- Ensure
covers any new directories that should be monitored.watch_paths
You are updating a reference doc in the eve-skillpacks repository.
## Your Task
Update the file: eve-work/eve-read-eve-docs/references/agents-teams.md
Add coverage for agent aliases (short names for chat addressing).
## Capability Summary
Agent aliases let users declare short names for agents instead of using full
project-slug-agent-name. Declared in manifest under `agents[].alias`. Resolved
at chat dispatch time. Status: Implemented.
## Primary Source
Read the plan: `$HORIZON_PATH/docs/plans/agent-aliases-plan.md`
## Code Confirmation
The agents CLI was updated: `git -C "$HORIZON_PATH" diff <commit>..HEAD -- packages/cli/src/commands/agents.ts`
New migration: packages/db/migrations/00076_add_agent_alias.sql
## Target
Read and edit: eve-work/eve-read-eve-docs/references/agents-teams.md
## Rules
- Distill only shipped behavior from the plan and code
- Edit the existing file; do not rewrite from scratch
- These are curated distillations for agents, not copies
- Keep it concise and actionablegit -C "$HORIZON_PATH" rev-parse HEAD./private-skills/sync-horizon/scripts/check-state-today.sh.sync-state.jsonlast_synced_commitlast_synced_at./private-skills/sync-horizon/scripts/check-state-today.sh
python3 scripts/check-repository.py
python3 scripts/check-source-sync.py --source "$HORIZON_PATH"
./private-skills/sync-horizon/scripts/check-state-today.sh
python3 scripts/check-repository.py
python3 scripts/check-source-sync.py --source "$HORIZON_PATH"## Sync Report: <old_commit_short>..<new_commit_short>
### Commits
- <count> commits synced (<feat count> features, <fix count> fixes)
### Shipped Capabilities (from plans)
- <capability>: <one-line summary> (plan status, feat commits)
### Capability Cascade
For each shipped capability:
- <capability> → updated <reference/skill>, because <reason>
### Removals
- <what was removed/deprecated and cleaned from skills>
### Updated Reference Docs
- <file>: <what changed and why>
### New Reference Docs
- <file>: <what it covers>
### Updated Skills
- <skill>: <what changed>
### SKILL.md Routing Changes
- <new routes, index entries, or coverage matrix rows>
### Sync Map Changes
- <new mappings added>
### State-Today Compliance
- <pass/fail + scan results>
### Coverage Gaps
- <shipped capabilities with no reference doc yet>
- <plan files with no sync-map entry>
- <CLI commands with no documentation coverage>
### Next Steps
- <manual follow-up needed>