Back to Discover

eidos

plugin

agenticnotetaking

Spec Driven Development - claude code plugin - Sync between intent and implementation

View on GitHub
58 starsSynced Aug 4, 2026

Install to Claude Code

/plugin marketplace add agenticnotetaking/eidos

README

Eidos

Spec-driven development for Claude Code.

Markdown specs capture intent. Code is a downstream manifestation of that intent. The two stay in sync bidirectionally: specs shape code, code can update specs, and conflicts become human decisions.

Why

The hard part of AI-assisted development is not writing code. It is keeping human and AI on the same page.

Intent lives in ephemeral places. The chat that scrolls away. A commit message. Your head. The AI acts on a fraction of it, and each new session starts blind.

Eidos has one goal. Human and agent hold the same picture of the work, at every point. It gets there three ways:

  • Capture intent as artifacts. Specs, claims, plans, decisions. Structured files, not disappearing chat.
  • Keep the human steering. Surface reasoning before acting, checkpoint at decisions, so course-correction is cheap and early.
  • Persist and reload. Those artifacts load back into session context automatically, so understanding compounds instead of resetting.

Specs are the flagship. They describe what a system should be, and stay in sync with the code. When the two drift, neither automatically wins. The human decides which to update.

Three folders

project/
  eidos/     # what it SHOULD be (specs, claims)
  memory/    # how we got here (plans, decisions, sessions)
  src/       # what it IS (code)

Specs describe timeless intent. Plans describe time-bound work. Code is the result.

With the agent-inbox feature enabled, a fourth folder appears: agent-inbox/. Each repo becomes an agent that coordinates with peer repos through append-only messages there. It is off by default. Turn it on with /eidos:config.

The core loop: spec ↔ code

Green-field

Write a spec for what you want: behaviour, design, verification. Do it by hand, or let /eidos:spec walk you through it.

Then push it into code:

/eidos:push my-feature-spec

Verify with tests, by hand, or both. If something is off, update the spec, commit, and push again. /eidos:push recent 1 picks up the latest spec change and its exact diff. Repeat.

Existing project

You already have the manifestation. Mine it for intent:

/eidos:pull the auth module

Review the extracted spec, refine it, and iterate. Now you have a spec to push against, drift-check, and evolve.

Workflows

The loop above is spec ↔ code. Most work starts earlier, in a vague idea.

WORKFLOWS.md shows the skills chaining end to end. Seed, research, brainstorm, design, fresh eyes, spec, plan, continue. With shorter variants for smaller work.

Externalise everything

AI "learning on the job" is just capturing ephemeral knowledge into files, then loading them into session context when they matter.

That knowledge can be anywhere. Your chat history. A coworker's head. Legacy code nobody dares touch. Eidos gives it all a place to land and a way to get loaded when it counts.

Skills

Every skill, grouped by what it is for. Run /eidos:help for the same list live inside any project.

Spec ↔ code — the core loop:

SkillWhat it does
/eidos:specCreate a spec via structured Q&A
/eidos:pushImplement code to match a spec
/eidos:pullReverse-engineer a spec from existing code
/eidos:driftAnalyse divergence between specs and code
/eidos:syncBidirectional reconciliation of specs and code
/eidos:coherenceCheck specs against each other for contradictions
/eidos:refineProcess inline comments in specs via dialogue
/eidos:behaveCapture current behaviour as a regression net
/eidos:weaveDiscover missing wiki links, prune stale ones

Plan and remember — procedural memory:

SkillWhat it does
/eidos:planPersistent plan for multi-step work
/eidos:plan-continueResume work on an existing plan
/eidos:plan-reviewReview a plan before implementing
/eidos:decisionRecord a decision with options and rationale
/eidos:experimentLog-based iterative exploration
/eidos:observeCapture testing issues mid-plan, update specs
/eidos:processWork through a structured document point by point

Research and understand:

SkillWhat it does
/eidos:researchInvestigate a topic, document with sources
/eidos:research-deepRecursive deep research with progressive synthesis
/eidos:research-recursiveBranching research, a file per area
/eidos:architectureSnapshot codebase structure for reference
/eidos:code-reviewReview code for quality and security
/eidos:reflectExtract learnings from a session or file
/eidos:metaAnalyse eidos skill output for quality
/eidos:tldrUltra-short summary of a topic or files
/eidos:simpleRe-explain concisely in plain terms with an example

Stay aligned — steering and shared understanding:

SkillWhat it does
/eidos:alignState your understanding so the human corrects it before work
/eidos:challengeConstructive pushback on a proposal
/eidos:brainstormExplore ideas around a topic
/eidos:infoRequest more context before proceeding
/eidos:statusSnapshot of active plan progress
/eidos:forgorRe-orient fast when you lose the thread
/eidos:pickmeupResurface recent activity to re-enter a project
/eidos:nextShow actionable items to work on
/eidos:spiralStop spiraling and hand off to the user

Capture and persist — externalise:

SkillWhat it does
/eidos:claimExtract and persist a claim
/eidos:referenceCapture external knowledge the project relies on
/eidos:todoCreate quick task files
/eidos:wishCapture feature ideas not yet specced
/eidos:missedLog documentation gaps for later routing
/eidos:annotateLeave inline AI feedback for human review
/eidos:toeidosRoute insights into specs and claims
/eidos:toclaudePersist behaviour corrections to CLAUDE.md
/eidos:true-nameFind precise domain names for vague concepts
/eidos:goodjobCapture positive calibration with context

Coordinate across repos — agent communication:

SkillWhat it does
/eidos:inboxRead and act on messages other repos left you
/eidos:messageSend a request or notification to a peer repo
/eidos:outboxCheck the status of messages you sent
/eidos:standinMark and request an API a dependency should own

Workflow and session:

SkillWhat it does
/eidos:initBootstrap the eidos folder structure
/eidos:configView and toggle project settings
/eidos:doneEnd a session with export and merge offer
/eidos:compactPre-compact readiness check before clearing
/eidos:archiveMove done files into archive subdirs
/eidos:helpList all eidos skills with descriptions
/eidos:worktreeParallel task work via git worktrees
/eidos:monoRegister a working subdir focus in a monorepo
/eidos:faildetectVerify-or-rollback execution mode
/eidos:pingSurface session status via an OS notification
/eidos:debug-session-startPrint session-start context for inspection

Content and export:

SkillWhat it does
/eidos:summaryStructured summary of a file or session
/eidos:tomdExport the conversation to markdown
/eidos:toscriptExport code to a script file
/eidos:toskillCreate a new skill from the conversation
/eidos:clipCopy relevant content to the clipboard
/eidos:imagePersist an image with a markdown companion
/eidos:gidCompress or expand text via GID notation
/eidos:videoGenerate a manim explainer video
/eidos:meLeave a note to yourself in the chat
/eidos:optionsPresent structured choices as a numbered list
/eidos:writing-styleBring a file up to the house writing style

Install

Requires Claude Code.

# Add marketplace
/plugin marketplace add agenticnotetaking/eidos

# Install plugin
/plugin install eidos@eidos

Then restart Claude and run /eidos:init inside any project to bootstrap the folder structure.

Alternative: clone and alias

If you'd rather run from a local checkout (easier to adjust eidos to your needs), clone the repo and add shell aliases:

git clone https://github.com/agenticnotetaking/eidos.git ~/repos/eidos

Then in your ~/.bashrc or ~/.zshrc:

export EIDOS_DIR="$HOME/repos/eidos"

eidos() {
  claude --plugin-dir "$EIDOS_DIR" "$@"
}

eidos-auto() {
  claude --dangerously-skip-permissions --plugin-dir "$EIDOS_DIR" "$@"
}

Adjust the path if you cloned elsewhere. eidos-auto skips permission prompts, so only use it in directories you trust.

The name

Eidos (εἶδος) is ancient Greek for "form" or "ideal form".

For Plato, eidos is the ideal that exists prior to any instance. /push is Platonic: start with the ideal, make it real. For Aristotle, eidos is the essence within particular things, discovered by studying concrete instances. /pull is Aristotelian: start with code, extract intent. The loop between them is dialectical refinement: spec meets reality, reality pushes back, spec evolves.

License

MIT

Rendered live from agenticnotetaking/eidos's GitHub README — not stored, always reflects the source repo.

1 Plugin

NameDescriptionCategorySource
eidosSpec-driven development plugin for Claude Code. Markdown specs as the source of truth, code downstream../

0 Comments

Login required
Log in to post a comment or update on this repo.

No comments yet — be the first to share an update.