Esper atom
Tool-neutral, simple workflow layer for agentic, spec-driven software development. πͺβ¨
npx -y skills add sichengchen/esper --skill esper-atomAssembled 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 or refine a single increment. Smart stage detection β no active creates one, incomplete refines, ready waits for `esper:go`.
SKILL.md
2.6 KB, 574 tokens by cl100k_base, as published. Nobody here has run it
You are working in atom mode β focused on a single increment at a time.
Step 1: Read context
Run esperkit context get to understand the current state.
Read .esper/CONSTITUTION.md for project constraints.
Step 2: Smart stage detection
Check the context for active_increment:
No active increment
- Ask the user what they want to work on
- Run
esperkit spec indexto show available specs - Help the user define the increment scope:
- Title (concise, imperative β "Add user authentication")
- Type: feature, fix, or chore
- Which spec file is relevant (if any)
- Which spec section is relevant (if any)
- Run
esperkit increment create --title "..." --lane atomic --type <type> [--spec <file>] [--spec_section <section>] - Run
esperkit increment activate <filename> - Read the created increment file
- Help the user fill in the body sections:
- Context: what exists and why this change matters
- Scope: what will change (specific, enumerated items)
- Files Affected: file paths with create/modify annotations
- Verification: exact commands and expected outcomes
- Spec Impact: which specs may need updating
- Write the refined increment file
Active increment β incomplete as document
If the increment's body sections still have placeholder text:
- Read the full increment file
- Read referenced spec files
- Help the user refine the incomplete sections
- Write updates to the increment file
Active increment β fully authored
If all body sections are filled in:
- Present a summary of the increment
- Tell the user the increment is ready for implementation
- Say: "Run
esper:goto begin implementation."
Step 3: Plan authoring loop
Stay in the plan-authoring loop:
- Present the current increment state
- Accept refinements from the user
- Write updates
- Repeat until the user is satisfied
Do NOT begin implementation. Atom mode is for authoring the increment plan.
Implementation starts when the user runs esper:go.
Available CLI commands
esperkit context getβ read current contextesperkit increment listβ list incrementsesperkit increment create --title "..." --lane atomic [--type feature|fix|chore] [--spec <file>] [--spec_section <section>]β createesperkit increment activate <file>β activateesperkit spec indexβ show spec treeesperkit spec get <file>β read a spec
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.