npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@atelier-kit/atelier-kit

v0.2.0

Published

CLI and `.atelier/` layout for structured, opt-in agent planning

Readme

atelier-kit

Atelier-Kit adds structure around planning when you ask for it: artifacts under .atelier/, a ledger per epic, optional mirrors into your agent's native plan files, and a short review pass after implementation.

Nothing happens until you opt in. /atelier ... (or explicitly asking to use Atelier-Kit) turns the protocol on; until then there are no .atelier/ writes, no skills loaded, no gates. Hosts that install native plan hooks can also let the host's /plan ... mode bootstrap a V2 epic and receive framework nudges while the agent writes the same .atelier/epics/<epic>/ artifacts.

While an epic is active, treat these two files as authoritative:

.atelier/active.json
.atelier/epics/<epic-slug>/state.json

An epic walks through discovery, synthesis and design (depending on mode), planning, then planned. After planned, coding happens the same way it would without Atelier—the agent uses its usual workflow. Review at the end compares what shipped with what was planned.

Vocabulary you will see:

  • epic: the initiative you are planning end to end
  • question: first artifact; research should not run on boilerplate questions alone
  • task: one chunk of the protocol (questions, a research track, planning, etc.)
  • slice: a vertical cut inside plan.md with scope, acceptance checks and validation

Plannotator

Atelier-Kit keeps the CLI small. When Plannotator is installed, the agent uses it directly as a review surface for planning artifacts. Before a phase is marked done, the active artifact is opened with:

plannotator annotate .atelier/epics/<epic>/<artifact>.md

Any notes from Plannotator are folded back into that artifact before state.json advances. There is no separate Atelier command for this flow.

Not affiliated with HumanLayer. See CREDITS.md.

Install

npm install -g @atelier-kit/atelier-kit

atelier-kit ships a small command-line helper. It initializes the protocol, installs adapter rules, validates gates, and exports native plan mirrors; the agent and skills do the planning work.

Quickstart

Initialize the protocol

cd your-repo
atelier init

This installs .atelier/atelier.json, .atelier/active.json, protocol files, rules, skills, schemas, and adapter instructions. active.json starts inactive:

{
  "active": false,
  "mode": "native",
  "active_epic": null
}

Use host-native plan mode

/plan add this endpoint

Without hooks this remains ordinary host planning. With Atelier native-plan hooks installed, the first plan-mode prompt creates a V2 epic and injects the active framework step so the host agent fills .atelier/epics/<epic>/ through planned.

Activate Atelier explicitly

atelier new "Add payment endpoint" --mode quick
atelier status
atelier validate

In agent chat, the equivalent activation is:

/atelier quick add this endpoint
/atelier plan add payments
/atelier deep migrate authentication to SSO

The active epic ledger is created at .atelier/epics/<epic-slug>/.

Finish planning and review implementation

After the plan is reviewable, the agent marks the active epic planned and exports a native mirror. The CLI helper can also do the final gate/export step:

atelier done

atelier done finalizes the active planning task when you are using the CLI lifecycle. In the simplified agent-led flow, the active skill updates state.json directly and atelier validate --gate plan-ready checks the result. After planned, implement through Claude Code, Cursor, Kiro, Antigravity, Codex or another host-agent workflow. After implementation:

atelier review
atelier done

atelier review records how the current implementation diff matches the plan.

Planning protocol

  • PROTOCOL.md — protocol states, files, gates, and commands
  • AGENT-USAGE.md — activation and what to read when Atelier is on
  • ARCHITECTURE.md — internal architecture, state model, adapters, and artifacts

The default protocol shape is:

explicit activation
  -> .atelier/active.json
  -> .atelier/epics/<epic>/state.json
  -> questioner writes questions.md
  -> research artifacts
  -> design decisions
  -> plan.md with slices
  -> planned
  -> native agent implementation
  -> review

Small CLI Surface

| Command | Purpose | |---------|---------| | atelier init | Install the Atelier protocol files | | atelier install-adapter <name> | Install adapter files for a host agent | | atelier adapter install <name> | Alias for adapter installation | | atelier new "<goal>" --mode quick | Create an active epic ledger | | atelier status | Show active protocol state | | atelier validate | Validate schemas, state and planning gates | | atelier validate --gate plan-ready | Validate that the active plan can be finalized | | atelier doctor | Diagnose installation and state | | atelier render-rules --adapter cursor | Write adapter rules | | atelier export-plan --adapter claude-code | Copy the active plan.md to the host's plan location | | atelier review | Review the current implementation diff against the planned epic | | atelier next | Optional helper to focus the next pending planning task | | atelier done | Optional helper to complete a planning/review task | | atelier host-plan start "<goal>" | Thin helper to create a V2 epic for host-native plan mode | | atelier host-plan finalize | Validate a host-authored plan and export the native mirror | | atelier off | Disable Atelier |

Adapter outputs

atelier render-rules --adapter <name> writes the protocol rules for the selected host:

| Agent | Adapter | Output | |-------|---------|--------| | Claude Code | claude-code | CLAUDE.md, .claude/commands/atelier.md, .claude/skills/atelier/*.md | | Cursor | cursor | .cursor/rules/atelier-core.mdc | | Codex CLI | codex | AGENTS.md | | Gemini CLI | gemini-cli | GEMINI.md | | Antigravity | antigravity | .antigravity/atelier.md | | Kiro | kiro | .kiro/steering/atelier.md | | Kilo Code | kilo | .kilocode/rules/atelier.md | | Windsurf | windsurf | .windsurfrules | | Cline | cline | .clinerules/atelier-core.md | | Generic | generic | atelier-system-prompt.txt |

See ADAPTERS.md for the adapter capability matrix.

Native plan mirrors

Treat .atelier/epics/<epic>/plan.md as canonical. When your agent reads plans better from its own location, atelier export-plan copies there—mirrors are for convenience, not authority. The default Claude Code mirror is ~/.claude/plans/<epic>.md; Cursor, Kiro and Antigravity use workspace-local mirror paths unless --path is provided.

External review tools can still be chained after export:

atelier export-plan --adapter claude-code --command 'plannotator annotate "$ATELIER_PLAN_PATH"'

During the normal artifact flow, the agent does not need another Atelier command. Before a phase is marked done, it should open that phase's artifact when Plannotator is installed: plannotator annotate .atelier/epics/<epic>/<artifact>.md. Any notes that come back from Plannotator should be folded into that same artifact before state.json is advanced or atelier done is run.

Mirrors are derived files. If a native agent changes the plan, update the canonical Atelier plan.md explicitly before finalizing it again.

License

MIT — see LICENSE.

Credits

See CREDITS.md.