cd /news/ai-tools/show-hn-executor-skill-superpowers-o… · home topics ai-tools article
[ARTICLE · art-117995] src=github.com ↗ pub= topic=ai-tools verified=true sentiment=· neutral

Show HN: Executor – Skill: Superpowers on Steroids

Atri10 released Executor, an open-source initiative-scoped workflow system for coding agents that structures work from intake through review with a strict per-initiative ID namespace and separated thinking and execution stores. The system, available on GitHub, works with any agent that can read skill files from a directory and includes 10 skills covering phases from initiative intake to handoff, with evidence-backed completion and a safety scan before handoff.

read3 min views1 publishedSep 1, 2026
Show HN: Executor – Skill: Superpowers on Steroids
Image: Michielbdejong (auto-discovered)

An initiative-scoped workflow system for coding agents: it takes a major idea from intake through architecture, spec, plan, execution, and review, with a strict per-initiative ID namespace, separated thinking and execution stores, and evidence-backed completion.

Nothing floats. Every document, task, review, and ruling carries an ID that names the initiative it belongs to. A body of work gets one Initiative; the initiative owns a folder, an ID namespace, and every document produced about it.

Works with any agent that can read skill files from a directory.

Clone the repo and copy the skills/

directories into whatever directory your agent loads skills from:

git clone git@github.com:Atri10/executor.git
cp -R executor/skills/* <your-agents-skills-dir>/

Then invoke the root router:

/skill:executor

or just say "start an initiative" — normal requests route by the skill's frontmatter description.

Skill Phase Output
executor
Router + contract Loads the right phase skill, defines the ID namespace
executor-initiative
Intake Initiative folder, charter
executor-discovery
Discovery Research, options comparison
executor-architecture
Architecture, Design Architecture, ADRs, interfaces, component designs
executor-spec
Specification Spec, risks, verification strategy
executor-planning
Planning Plans with tasks
executor-execution
Execution Commits, reports, ledger
executor-review
Review Verdicts, findings, rulings
executor-verification
Verification Evidence of working software
executor-handoff
Handoff Merged branch, updated indexes

Phases compress, they never vanish. A small initiative can produce a charter and a spec in one exchange and skip discovery — but skipping is a stated decision recorded in the charter, not an omission.

flowchart LR
    subgraph THINK["docs/executor/ - tracked"]
        C["Charter"] --> R["Research, Options"]
        R --> A["Architecture, ADRs, Interfaces"]
        A --> D["Design"]
        D --> S["Spec"]
        S --> P["Plans"]
    end
    subgraph EXEC[".executor/ - git-ignored by default"]
        L["Ledger, Rulings"]
        B["Briefs"]
        RP["Reports"]
        V["Diffs, Verdicts"]
    end
    P -->|"each task dispatch"| B
    B --> RP
    RP --> V
    V --> L

— the thinking record. Git-tracked: charter, research, architecture, decisions, interfaces, design, spec, risks, plans. A reader who clones the repo gets the complete reasoning.docs/executor/

— the execution record. Git-ignored by default, safe to commit if you choose: task briefs, implementer reports, review diffs and verdicts, the progress ledger, rulings. Never deleted — the reasoning is the point..executor/

The split is durability-of-audience, not durability-of-value.

INIT-0004                      the initiative
INIT-0004-CHTR-01              its charter
INIT-0004-RSCH-02              a research note
INIT-0004-SPEC-01-R07          requirement 7 inside that spec
INIT-0004-P01                  a plan
INIT-0004-P01-T03              task 3 of that plan
INIT-0004-P01-T03-R02          review round 2 of that task

Addressable requirements are what let a review finding name the exact contract it violates, and what lets a plan task declare precisely which requirements it discharges.

.executor/

may be committed, so everything in both stores is written as though it will be public. Credentials, tokens, and personal data never go into any Executor artifact — a redacted existence statement and a safe path instead. skills/executor/references/safety.md

defines the required scan before any handoff.

Doc Purpose
── more in #ai-tools 4 stories · sorted by recency
── more on @atri10 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/show-hn-executor-ski…] indexed:0 read:3min 2026-09-01 ·