Esper spec
Tool-neutral, simple workflow layer for agentic, spec-driven software development. πͺβ¨
npx -y skills add sichengchen/esper --skill esper-specAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Create, review, or revise spec files. Opens a spec editing loop that continues until the user advances with `esper:go`.
SKILL.md
2.2 KB, 489 tokens by cl100k_base, as published. Nobody here has run it
You are working on the project's spec tree β the authoritative documentation of system behavior.
Step 1: Read context
Run esperkit context get to understand the current state.
Read .esper/CONSTITUTION.md for project vision and constraints.
Run esperkit spec index to see the spec tree structure.
Step 2: Determine working scope
If the user specified a topic or file:
- Check if a spec file exists for it:
esperkit spec get <path> - If it exists, open it for revision
- If not, create it:
esperkit spec create <path>
If no specific topic:
- Show the spec index and ask what area the user wants to work on
- If the spec tree is mostly scaffold (empty template files), offer to bootstrap specs from code analysis:
- Read the codebase structure (key source files, package.json, etc.)
- Propose a spec structure that documents what exists
- Write initial specs based on the actual code
Step 3: Spec authoring loop
Enter a revision loop:
- Read the current spec file
- Present the content to the user
- Accept feedback and revisions
- Write updates to the spec file
- Repeat until the user is satisfied
When writing specs:
- Use clear, declarative language ("The system does X" not "The system should do X")
- Document actual behavior, not aspirational behavior
- Include concrete examples where helpful
- Reference other spec files by relative path when describing cross-cutting concerns
Step 4: Stay in spec mode
Continue in the spec revision loop until:
- The user explicitly says they're done with specs
- The user invokes
esper:goto advance to implementation - The user switches to a different skill
Do NOT automatically advance to implementation. Spec work is its own distinct phase.
Available CLI commands
esperkit spec indexβ show the spec tree indexesperkit spec get <file>β read a spec fileesperkit spec create <path>β create a new spec fileesperkit spec set-root <path>β change the spec root directoryesperkit spec archive <file>β archive a spec fileesperkit spec listβ list all specs with metadata
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.