sync-horizon▌
incept5/eve-skillpacks · updated Apr 8, 2026
MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.
Synchronize eve-skillpacks with the latest state of the eve-horizon repository.
Sync Horizon
Synchronize eve-skillpacks with the latest state of the eve-horizon repository.
Core Insight
System docs often lag behind implementation. Features ship via feat commits with plans marked "Implemented" — but docs/system/ may not update for weeks. This sync goes to the source: plans, code changes, and commit messages tell us what actually shipped. System docs are one signal among many, not the primary driver.
Prerequisites
- The eve-horizon repo must be at
../eve-horizon(sibling directory) .sync-state.jsonmust exist in the repo root (create from template if missing).sync-map.jsonmust exist in the repo root
Architecture: Orchestrator + Parallel Workers
You (the orchestrator) discover what shipped and dispatch focused workers. Each worker handles one update in isolation with its own context budget.
The orchestrator reads lightweight signals (commit log, plan headers, file stats, CLI module list). Workers read the heavy content (plan bodies, code diffs, source docs, target files).
Output Standards
- Distill only shipped platform behavior. Plans marked Implemented/Complete describe shipped features.
- Do not carry roadmap content into skillpacks. Ignore plans marked Proposed/Draft and sections like
Planned (Not Implemented),What's next, or "current vs planned" framing. - Keep
eve-work/eve-read-eve-docs/SKILL.mdtask-first: route by intent, load only the minimal reference files needed. - Keep reference docs scoped and actionable — curated distillations, not copies.
Workflow
Phase 1: Deep Discovery (orchestrator)
Read lightweight signals from multiple dimensions to understand what actually shipped.
1a. Commit log
cd ../eve-horizon && git log --oneline <last_synced_commit>..HEAD
Categorize commits:
feat:— new capabilities (primary interest)fix:— bugfixes that may affect documented behaviordocs:— documentation changes (check if they describe already-shipped features)chore:/refactor:— usually no skillpack impact, but note removals
1b. Plan intelligence
This is the richest signal. Plans describe what shipped, why, and how.
cd ../eve-horizon && git diff --stat <last_synced_commit>..HEAD -- docs/plans/
For each changed plan, read its header only (first 15-20 lines) to extract status:
cd ../eve-horizon && head -20 docs/plans/<plan-file>.md
Categorize:
- Shipped: Status contains
Implemented,Complete, orDone— these are the primary source of truth for new capabilities - In progress: Status contains
In Progress,Partially Implemented— note for awareness but don't distill unfinished work - Proposed/Draft: Status contains
Proposed,Plan,Draft,Ready to build— skip entirely - Removed: Plan files deleted in this range — something was deprecated or abandoned
IMPORTANT: Do not read full plan bodies. Just headers. Workers will read the plans they need.
1c. Code signal
New CLI commands, DB migrations, and package changes confirm what shipped and reveal capabilities that plans may not fully describe.
# New/changed/removed CLI commands
cd ../eve-horizon && git diff --stat <last_synced_commit>..HEAD -- packages/cli/src/commands/
# New DB migrations (table/column names reveal capability shape)
cd ../eve-horizon && git diff --stat <last_synced_commit>..HEAD -- packages/db/migrations/
# Key package changes (new modules, removed modules)
cd ../eve-horizon && git diff --stat <last_synced_commit>..HEAD -- packages/shared/src/ packages/api/src/ packages/worker/src/ packages/gateway/src/ --stat-name-width=120 | head -50
1d. System doc changes
Still a useful signal — especially for removals and corrections.
cd ../eve-horizon && git diff --stat <last_synced_commit>..HEAD -- docs/system/ AGENTS.md
1e. Current CLI surface
Snapshot the current CLI command modules. This is the ground truth for what agents can invoke.
cd ../eve-horizon && ls packages/cli/src/commands/*.ts
Phase 2: Capability Synthesis (orchestrator)
STOP and think. This is the critical step. Cross-reference all signals to build a capability map.
For each shipped plan (Implemented/Complete), create a capability entry:
Capability: <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>
Also create entries for capabilities evidenced by feat commits that have no corresponding plan — these are smaller features or fixes that shipped directly.
Also note removals: plans deleted, CLI commands removed, modules deleted. These need to be cleaned from our skills too.
Phase 3: Cascade Analysis (orchestrator)
For each capability in the map, determine its impact on eve-read-eve-docs:
3a. Reference doc impact
For each capability, ask:
- Does an existing reference already cover this area? → Worker updates it
- Is this a new primitive that needs its own reference? → Worker creates it
- Was something removed? → Worker cleans stale content from affected references
Cross-reference against the current reference index in eve-work/eve-read-eve-docs/SKILL.md and the reference_docs section of .sync-map.json.
3b. SKILL.md routing impact
Check if eve-work/eve-read-eve-docs/SKILL.md needs:
- New entries in the Task Router
- New entries in the Index
- New rows in the Intent Coverage Matrix
- New trigger keywords in the frontmatter
- Removal of stale entries for deprecated capabilities
3c. Other skill impact
Check .sync-map.json skill_triggers and composite_triggers for other skills affected. Also consider:
eve-se/eve-manifest-authoring— if manifest shape changedeve-se/eve-deploy-debugging— if deploy/infra behavior changedeve-se/eve-auth-and-secrets— if auth model changedeve-work/eve-agent-memory— if storage primitives changedeve-design/eve-fullstack-app-design— if app patterns changed
Phase 4: Plan Work Items (orchestrator)
For each update identified in Phase 3, create a work item:
- Title:
Update <target-file>: <capability name> - Description — everything a worker needs to operate independently:
- The eve-horizon repo path (
../eve-horizon) - The commit range:
<last_synced_commit>..HEAD - Which plan(s) to read (the shipped plans relevant to this update)
- Which source files to diff or read (code, system docs)
- The target file path to update or create
- Whether this is a reference doc update, skill update, new reference, or removal
- The appropriate worker instructions from below
- The eve-horizon repo path (
Add a final work item: Update sync state and produce report — blocked until all updates finish.
If any work item touches eve-work/eve-read-eve-docs, also add:
Run 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 mappings
Phase 5: Dispatch Workers (parallel)
Spawn one background worker per work item. Launch them all at once.
Each worker prompt must be self-contained. The worker has no access to the orchestrator's conversation. Include:
- The plan file(s) to read — these are the primary source of truth
- The git diff command for relevant code/doc changes
- The target file to read and modify
- The capability summary from Phase 2
- The appropriate worker instructions from below
Worker Instructions: Reference Doc Update
Your 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:
cd ../eve-horizon && ls 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.
Worker Instructions: New Reference Doc
- Read the plan(s) that describe this capability.
- Check for any system doc coverage:
cd ../eve-horizon && cat docs/system/<name>.md(may not exist).- Read the CLI command source if relevant:
cd ../eve-horizon && cat 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.
Worker Instructions: Skill Update
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.
Worker Instructions: SKILL.md Routing Update
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.
Worker Instructions: Staleness Check
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
references/directory.- Read the shipped plan(s) listed in your task for context on what changed.
- List current CLI command modules:
cd ../eve-horizon && ls packages/cli/src/commands/*.ts- 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.
Worker Instructions: Sync Map Update
Update
.sync-map.jsonto reflect new mappings discovered during this sync.
- Read the current
.sync-map.json.- For each new reference doc created, add a
reference_docsentry mapping the source files to the target.- For each new skill trigger relationship discovered, add a
skill_triggersentry.- For removed source docs, clean up stale mappings.
- Ensure
watch_pathscovers any new directories that should be monitored.
Example Worker Prompt
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: cd ../eve-horizon && cat docs/plans/agent-aliases-plan.md
## Code Confirmation
The agents CLI was updated: cd ../eve-horizon && git 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 actionable
Phase 6: Collect Results and Finalize (orchestrator)
Wait for all workers to complete.
Once all update work items are done:
- Get current HEAD:
cd ../eve-horizon && git rev-parse HEAD - Run state-today and progressive-access checks:
./private-skills/sync-horizon/scripts/check-state-today.sh - Update
.sync-state.json:- Set
last_synced_committo the HEAD hash - Set
last_synced_atto current ISO timestamp - Append to
sync_log(keep last 10 entries)
- Set
Phase 7: Report (orchestrator)
## 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>
How to use sync-horizon on Cursor
AI-first code editor with Composer
Prerequisites
Before installing skills in Cursor, ensure your development environment meets these requirements:
- ›Cursor installed and configured on your development machine
- ›Node.js version 16.0+ with npm package manager (verify with
node --version) - ›Active project directory or workspace where you want to add sync-horizon
Execute installation command
Execute the skills CLI command in your project's root directory to begin installation:
The skills CLI fetches sync-horizon from GitHub repository incept5/eve-skillpacks and configures it for Cursor.
Select Cursor when prompted
The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:
Verify installation
Confirm successful installation by checking the skill directory location:
Reload or restart Cursor to activate sync-horizon. Access the skill through slash commands (e.g., /sync-horizon) or your agent's skill management interface.
Security & Verification Notice
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.
List & Monetize Your Skill
Submit your Claude Code skill and start earning
Use Cases▌
User Story & Requirements Generation
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Competitive Analysis
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Roadmap Prioritization
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
Make data-driven prioritization decisions faster
Stakeholder Communication
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Implementation Guide▌
Prerequisites
- ›Claude Desktop or compatible AI client
- ›Access to product documentation and roadmap tools (Jira, Notion, etc.)
- ›Understanding of product management frameworks (RICE, Jobs-to-be-Done, etc.)
- ›Stakeholder contact information and communication channels
Time Estimate
30-60 minutes to see productivity improvements
Installation Steps
- 1.Install product management skill
- 2.Start with user story generation for known feature
- 3.Progress to competitive analysis: research 2-3 competitors
- 4.Use for roadmap prioritization: apply RICE/ICE scoring
- 5.Draft stakeholder communications and refine based on feedback
- 6.Build template library for recurring PM tasks
- 7.Share effective prompts with product team
Common Pitfalls
- ⚠Not validating competitive research—verify facts before sharing
- ⚠Accepting user stories without involving engineering team
- ⚠Over-relying on frameworks without qualitative judgment
- ⚠Not customizing outputs to company culture and communication style
- ⚠Skipping stakeholder validation of generated requirements
Best Practices▌
✓ Do
- +Validate research and competitive analysis with real data
- +Collaborate with engineering when generating technical requirements
- +Customize frameworks and templates to your company context
- +Use skill for first drafts, refine with stakeholder input
- +Document successful prompt patterns for PM tasks
- +Combine AI efficiency with human judgment and intuition
✗ Don't
- −Don't publish competitive analysis without fact-checking
- −Don't finalize user stories without engineering review
- −Don't make prioritization decisions solely on AI scoring
- −Don't skip customer validation of generated requirements
- −Don't ignore company-specific context and culture
💡 Pro Tips
- ★Provide context: company goals, constraints, customer feedback
- ★Ask for alternatives: 'Show 3 ways to prioritize this roadmap'
- ★Request stakeholder-specific formatting: 'Executive summary vs. engineering spec'
- ★Use skill for 70% generation + 30% customization to company needs
When to Use This▌
✓ Use When
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid When
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
Learning Path▌
- 1Basic: user stories, feature specs, status updates
- 2Intermediate: competitive analysis, prioritization frameworks, PRDs
- 3Advanced: product strategy, go-to-market planning, OKR setting
- 4Expert: product vision, market positioning, business model innovation
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.7★★★★★28 reviews- ★★★★★Ren Taylor· Dec 16, 2024
Useful defaults in sync-horizon — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Chen Kim· Dec 4, 2024
I recommend sync-horizon for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Chen Perez· Nov 23, 2024
Keeps context tight: sync-horizon is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Mei Singh· Nov 7, 2024
sync-horizon is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Li Smith· Oct 26, 2024
Keeps context tight: sync-horizon is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Emma Khanna· Oct 14, 2024
sync-horizon is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Sakshi Patil· Sep 25, 2024
sync-horizon has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Amelia Desai· Sep 5, 2024
Solid pick for teams standardizing on skills: sync-horizon is focused, and the summary matches what you get after install.
- ★★★★★Amelia Patel· Aug 24, 2024
sync-horizon has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Chaitanya Patil· Aug 16, 2024
Solid pick for teams standardizing on skills: sync-horizon is focused, and the summary matches what you get after install.
showing 1-10 of 28