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

@he3-org/concert

v1.27.1

Published

Opinionated agentic development lifecycle orchestrator

Readme

Concert

Opinionated agentic development lifecycle orchestrator. Concert installs a curated set of AI agents and slash commands into your repository that guide you through a structured SDLC — from vision to requirements to architecture to planning to implementation, review, and refactor — using Claude Code and GitHub Copilot.

Installation

Prerequisites

1. Add Concert to your project

Concert is designed to be pinned per repository — different projects often track different Concert versions, so we recommend installing it as a project-local dev dependency rather than globally.

npm install --save-dev @he3-org/concert

To use the read-only MCP server (recommended — see step 3), also add the MCP SDK as a dev dependency:

npm install --save-dev @he3-org/concert @modelcontextprotocol/sdk

All Concert commands are then run via npx concert <command>, which resolves to your project's pinned version automatically.

Prefer a global install? npm install -g @he3-org/concert works too and lets you drop the npx prefix. Just be aware that a global binary is shared across every repo on your machine, so you lose per-project version pinning.

2. Initialize Concert in your repository

From the root of your project:

npx concert init

This creates the following files. Edit concert.jsonc to fit your project; the rest are managed by Concert and refreshed on concert update.

| Path | Purpose | | ----------------------------------- | ----------------------------------------- | | concert.jsonc | Project configuration (edit to customize) | | .concert/ | State, missions, and workflow definitions | | .github/agents/concert-*.agent.md | GitHub Copilot agent definitions | | .github/workflows/copilot-setup-steps.yml | Preinstalls Concert + MCP SDK in Copilot cloud-agent runs (skipped if you already have one) | | .claude/commands/concert-*.md | Claude Code slash commands | | CLAUDE.md | Concert section appended (or created) |

To update Concert later:

npm install --save-dev @he3-org/concert@latest
npx concert update

This updates the pinned npm package first, then refreshes Concert-managed files from that version. concert update overwrites managed agent/command files, merges any new concert.jsonc or state fields into your existing files, and removes stale managed files from older Concert releases. Review and commit both the package file changes and the refreshed managed files.

If you use the MCP server and installed the SDK explicitly, keep it current too:

npm install --save-dev @modelcontextprotocol/sdk@latest

3. Install the Concert MCP server in your client

Concert ships a read-only MCP (Model Context Protocol) server that exposes mission state as structured tool calls. Wiring this up is strongly recommended: it lets the agents query mission status, state, and individual document sections directly instead of reading and re-parsing markdown — typically a 20–40× reduction in tokens for status-style operations. See docs/MCP.md for the full tool catalog.

The snippets below all launch Concert via npx, so each client picks up the version pinned in the project's package.json automatically — no global install required. The -y flag suppresses npx's first-time install prompt.

Claude Desktop~/.config/claude/claude_desktop_config.json

{
  "mcpServers": {
    "concert": { "command": "npx", "args": ["-y", "@he3-org/concert", "serve"] }
  }
}

GitHub Copilot (VS Code).vscode/settings.json in your project

{
  "github.copilot.mcp.servers": {
    "concert": { "command": "npx", "args": ["-y", "@he3-org/concert", "serve"] }
  }
}

GitHub Copilot cloud agents (GitHub.com) — repository settings

Repository administrators can enable the MCP server for GitHub.com cloud agents:

  1. Open the repository on GitHub.com.
  2. Go to Settings → Copilot → Coding agent.
  3. Paste this JSON into MCP configuration and save:
{
  "mcpServers": {
    "concert": {
      "type": "local",
      "command": "concert",
      "args": ["serve"],
      "tools": [
        "concert.get_status",
        "concert.get_state",
        "concert.list_missions",
        "concert.get_section",
        "concert.list_modified_sections"
      ]
    }
  }
}

The cloud agent can then call Concert's read-only tools autonomously during tasks. No secrets are required for Concert's local MCP server.

Important: the snippet above invokes the concert binary directly, which assumes Concert is preinstalled in the runner. Do the steps in Cloud agent setup (GitHub.com) below before your first cloud-agent run — otherwise the MCP server will fail to start before the handshake timeout and Copilot will silently skip it.

Cursor — Cursor MCP settings

{
  "concert": { "command": "npx", "args": ["-y", "@he3-org/concert", "serve"] }
}

Codex CLI — Codex MCP config

{
  "servers": {
    "concert": { "command": "npx", "args": ["-y", "@he3-org/concert", "serve"] }
  }
}

If you opted for a global install in step 1, you can replace "command": "npx", "args": ["-y", "@he3-org/concert", "serve"] with "command": "concert", "args": ["serve"] in any of the snippets above.

You can verify the server starts and inspect the tool schemas with:

npx concert serve --inspect

The same data is also reachable from the CLI without an MCP client (npx concert get-status, npx concert get-state, npx concert list-missions, npx concert get-section <doc> <section>).

Cloud agent setup (GitHub.com)

Cloud-agent runs need a few extras beyond the MCP JSON above. Without them, the most common failure mode is the MCP server silently failing to start: a fresh runner has to download @he3-org/concert and @modelcontextprotocol/sdk over the network the first time npx runs, and Copilot enforces a startup timeout on MCP servers — if the install is still in flight when that timer fires, the server is marked failed and skipped without a visible error in the session log.

1. Preinstall Concert in the runner. concert init writes .github/workflows/copilot-setup-steps.yml for you. The workflow installs @he3-org/concert@latest and @modelcontextprotocol/sdk globally before the agent starts. Two requirements for it to take effect:

  • The file must be present on the default branch — Copilot only reads copilot-setup-steps.yml from there.
  • Trigger it once manually from the repository's Actions tab to confirm it runs green. See GitHub's Copilot setup steps docs for the full reference.

If you already had a copilot-setup-steps.yml of your own, concert init will not overwrite it. Add the following step to your existing copilot-setup-steps job (and ensure the job sets up Node.js 20+ first, e.g. with actions/setup-node@v4):

      - name: Install Concert and MCP SDK globally
        run: npm install -g @he3-org/concert@latest @modelcontextprotocol/sdk

2. Allow Concert through the firewall. Cloud agents run behind GitHub's integrated firewall, which by default blocks the npm registry. Under Settings → Copilot → Coding agent → Custom allowlist, add:

  • registry.npmjs.org, npmjs.org, npmjs.com — required by npm install and any npx fallback.
  • objects.githubusercontent.com, raw.githubusercontent.com — required by concert skills add and concert rules add to fetch from he3-org/concert-assets.

See GitHub's Customizing or disabling the firewall docs for the full procedure.

3. Put cloud-agent secrets in the copilot environment. Any tokens or secrets the Concert agents need (e.g. for private fetches) belong in the repository's copilot GitHub Actions environment, not the default environment — cloud-agent runs only see env values configured there. Common gotcha; see the same docs link above for the step-by-step.

4. Verify. After your first cloud-agent task starts, check two things:

  • The Copilot Setup Steps workflow ran green for the commit the agent picked up.
  • The session log shows MCP server "concert" started (or equivalent). If it does not, the setup steps did not run on the default branch, or the firewall blocked an outbound host above.

Usage Example

This walkthrough takes a single feature through the entire Concert SDLC. Each step names the agent to invoke, the purpose of the step, and a brief note on how Concert keeps tokens low along the way.

For each stage the recommended environment is:

| Stages | Recommended environment | Why | | ----------------------------------------------- | -------------------------------------- | ---------------------------------------------------------------------------------- | | Vision, Requirements, Architecture, UX Design | Claude Code CLI or Copilot CLI | These stages interview you one question at a time; they need an interactive shell. | | Planning, Development, Review, Finish, Refactor | GitHub Copilot cloud agents | Autonomous and long-running; cloud agents are cheaper and run unattended. |

Throughout the flow, agents call the Concert MCP tools (concert.get_status, concert.get_state, concert.get_section, concert.list_modified_sections) to fetch only the precise mission data they need rather than reading whole documents. Run concert doctor at any time to audit token cost across all managed files.

Step 1 — Create the vision (/concert-vision)

/concert-vision create Add OAuth2 login with Google and GitHub providers

Purpose: Produce .concert/missions/<slug>/VISION.md capturing the goals, audience, success criteria, and constraints of the feature. The agent researches your codebase and the feature domain, and asks you targeted questions to fill any gaps.

Variants:

  • /concert-vision from-issue 123 — start the mission from GitHub issue #123 (title + body become the description; mission slug prefixed with issue-123-).
  • Append --branch to either create or from-issue to also check out a mission/<slug> branch.

Step 2 — Review the vision (/concert-review-docs review)

/concert-review-docs review vision

Purpose: This is the single highest-leverage step in the pipeline — every issue caught here saves significant rework downstream. The reviewer interviews you to refine the document, marks the changed sections with CONCERT:MODIFIED:<slug> markers, and automatically runs /concert-alignment check when it makes any edit so cross-document consistency is verified for free.

Modes:

  • Conversational (default in interactive shells): one question at a time, you steer.
  • Batch (--batch, also automatic in cloud agent runs): the agent does the full evaluation, applies high-confidence edits directly, and stages everything else as - [ ] items in the doc's Open Questions section.

To skip the review-then-re-evaluate ping-pong on subsequent stages, prefer the one-shot:

/concert-review-docs review-and-reconcile vision

This runs review immediately followed by re-evaluate-all, which uses the per-section CONCERT:MODIFIED markers to selectively re-evaluate only the downstream documents whose impacted sections actually changed — dramatically cheaper than re-running every downstream agent.

💡 Tip: Run review-docs after creating every spec document (Vision, Requirements, Architecture, UX Design). Auto-alignment + selective re-evaluation make the cost of catching issues early very low.

Step 3 — Decompose into requirements (/concert-requirements)

/concert-requirements create

Purpose: Reads the mission's VISION.md (via the MCP get_section tool — only the sections it needs) and produces REQUIREMENTS.md with SHALL/SHOULD/MAY requirements, dependencies, assumptions, and open questions. Then review and reconcile:

/concert-review-docs review-and-reconcile requirements

Step 4 — Design the architecture (/concert-architect)

/concert-architect create

Purpose: Designs a system that satisfies the requirements. Produces ARCHITECTURE.md with components, data models, interfaces, and Architectural Decision Records. Then:

/concert-review-docs review-and-reconcile architecture

Step 5 — UX design (optional, /concert-ux-design)

/concert-ux-design create

Purpose: For features with a UI, designs information architecture, navigation flows, component specifications, and accessibility considerations into UX-DESIGN.md. Then:

/concert-review-docs review-and-reconcile ux-design

Step 6 — Plan the implementation (concert-planner)

🖥️ Switch to a GitHub Copilot cloud agent from here on. The remaining stages are autonomous and long-running.

Select concert-planner, then type: create

Purpose: Decomposes the architecture into a PLAN.md of phases plus individual TASK-*.md files. Each task specifies the exact files to create/modify, the tests to write, acceptance criteria, and a model tier (haiku / sonnet / opus) sized to its complexity — the planner does the cost shaping so the developer agent can route accordingly.

Step 7 — Implement (concert-develop, implement)

Select concert-develop, then type: implement

Purpose: Works through task files in order using TDD: write tests → implement → commit → self-review → fix → commit → next task. The agent reads DEVELOPMENT-STATUS.md (via MCP get_state) to find where it left off, so sessions can be interrupted at any time and resumed without re-reading the world. Variants:

  • implement --model sonnet — process only haiku/sonnet tasks, stop before opus.
  • implement --phase 01-foundation — process tasks in a specific phase.
  • implement <path-to-task-file> — run a specific task.
  • status — show progress without doing work.

Step 8 — Review the implementation (concert-develop-review, review)

Select concert-develop-review, then type: review

Purpose: Validates the implementation against the specification documents, producing DEVELOPMENT-REVIEW.md with a requirements traceability matrix, architecture compliance check, and a categorized list of gaps. Each gap carries a Recommended Model tier so the developer agent knows whether the fix needs Sonnet or Opus. Read-only — does not modify code or specs. Variants: review --scope requirements | architecture | ux | phase <slug>, status.

Step 9 — Fix the gaps (concert-develop, fix-gaps)

Select concert-develop, then type: fix-gaps

Purpose: Treats each gap from the review as an independent mini-task and fixes it with the same TDD discipline. Variants:

  • fix-gaps DEV-G001 DEV-G003 — fix specific gaps by ID.
  • fix-gaps --severity critical — fix only Critical gaps (severity is cumulative: critical < major < minor).

After fixing, re-run concert-develop-reviewreview to confirm.

Step 10 — Finish & document (concert-develop-finish, finish)

Select concert-develop-finish, then type: finish

Purpose: Archives all working specs (VISION, REQUIREMENTS, ARCHITECTURE, UX-DESIGN, PLAN, DEVELOPMENT-STATUS, DEVELOPMENT-REVIEW, task files…) into a DELETE-ME/ subfolder of the mission, then synthesizes them into a small set of durable, developer-facing reference docs that capture what was built and why the key decisions were made (sourced from the ADRs and review deviations). Variants: finish --dry-run, docs-only, status.

When you are happy with the generated docs, move them into your project's docs/ folder and delete DELETE-ME/.

Step 11 — Refactor (concert-refactor, create)

Select concert-refactor, then type: create

Purpose: Surveys the repository and writes a ranked plan to .concert/REFACTOR-PLAN-YYYY-MM-DD.md covering duplication, cohesion, coupling, naming, dead code, complexity, error handling, test quality, type safety, and so on. Items are ranked Critical / Major / Minor / Nice-to-have. Then hand the plan to the developer agent:

Select concert-develop, then type: refactor

The developer agent works through items in priority order, locks in current behavior with tests where needed, applies each refactor, and updates the Status field of each item directly in the refactor plan.

💡 Tip: concert-refactor is a utility agent — runnable any time you want a ranked refactor view, not only at the end of a mission.

At any time

/concert-status      # current stage, modified docs, gaps, refactor items, next action
npx concert doctor   # audit lines/KB/tokens for every Concert-managed file
npx concert push     # stage + commit pending state changes and push the branch

/concert-status is the single biggest beneficiary of the MCP integration: it used to read 5–8 files (~3,500–6,000 input tokens); via concert.get_status it now consumes ~150 tokens.

Small ad-hoc tasks (no mission)

Not every change deserves a full mission. When the requirements fit in a few paragraphs — a tiny feature, a chore, a one-off bug — Concert ships two agents that take a free-text description (or a GitHub issue) and run the same TDD + self-review + commit discipline as the mission flow, without any mission docs.

Small feature or chore (concert-develop, task)

Select concert-develop, then type one of:

task Add a --json flag to the doctor command that prints token costs as JSON
task --from-issue 142
task ./notes/small-feature.md

Purpose: The agent derives a slug from the description, writes failing tests for the requirement, commits the red tests, implements the minimum code to pass, runs the full test suite, commits the implementation, self-reviews (up to 3 cycles, fixing CRIT/MAJ findings), and commits a final completion entry. When invoked with --from-issue <num> it cross-links the commit to the issue and posts a short comment when it finishes.

Bug fix (concert-fix, fix)

Select concert-fix, then type one of:

fix Login button throws "Cannot read property 'id' of undefined" when the session cookie is missing
fix --from-issue 142
fix ./bug-reports/login-crash.md

Purpose: The agent reproduces the bug with a failing test first (commits the red test), applies the smallest change that turns the test green (commits the fix, with Refs #<num> when sourced from an issue), runs the full test suite, self-reviews (up to 3 cycles), and records the fix. When invoked with --from-issue <num> it cross-links the commit to the issue and posts a short comment when it finishes.

💡 Tip: Both task and fix write to <mission_path>/DEVELOPMENT-STATUS.md only when a mission is active. Outside a mission they leave no Concert-managed files behind beyond the commits themselves.

Agents & Commands Reference

Concert ships 14 agents. Each has a corresponding Claude Code slash command (/concert-<name>) and a Copilot cloud-agent definition selectable as concert-<name>. The slash command and the cloud agent share the same underlying agent definition, so behavior and sub-commands are identical across surfaces.

Specification agents (Claude Code / Copilot CLI)

| Agent | Purpose | Common sub-commands | Example | | -------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------- | -------------------------------------------------- | | concert-vision | Creates VISION.md from a feature description. Researches the codebase and the feature domain; can start a mission from a GitHub issue. | create <description>, from-issue <n>, --branch | /concert-vision create Add OAuth2 login | | concert-requirements | Decomposes VISION.md into SHALL/SHOULD/MAY requirements with dependencies, assumptions, and open questions in REQUIREMENTS.md. | create | /concert-requirements create | | concert-architect | Produces ARCHITECTURE.md with components, data models, interfaces, and ADRs from the upstream specs. | create | /concert-architect create | | concert-ux-design | (Optional) Produces UX-DESIGN.md with information architecture, navigation flows, component specs, and accessibility notes. | create | /concert-ux-design create | | concert-review-docs | Interactive document reviewer. Refines a spec doc through a structured Q&A, marks changed sections, auto-runs alignment. | review <doc> [--batch], re-evaluate-all, review-and-reconcile <doc> | /concert-review-docs review-and-reconcile vision | | concert-alignment | Cross-checks all existing mission documents for contradictions, gaps, and traceability breaks. Run automatically by review-docs; can also be invoked manually. | check | /concert-alignment check |

Implementation agents (GitHub Copilot cloud agent recommended)

| Agent | Purpose | Common sub-commands | Example | | ---------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------- | | concert-planner | Decomposes the spec set into a phased PLAN.md and per-task TASK-*.md files, each tagged with a model tier. | create | concert-plannercreate | | concert-develop | TDD developer. Implements task files, fixes review gaps, applies refactors, runs token-optimization plans, and handles small ad-hoc tasks without a mission. | implement [task], task [--from-issue <num>] [<description>], fix-gaps [IDs] [--severity], refactor [IDs] [--severity], token-optimize, status | concert-developimplement --phase 01-foundation | | concert-fix | TDD bug-fix agent. Reproduces a bug with a failing test, applies the smallest fix, self-reviews, and verifies. Accepts inline text or a GitHub issue. | fix <description>, fix --from-issue <num> | concert-fixfix --from-issue 142 | | concert-develop-review | Read-only validator. Compares implementation to specs and produces DEVELOPMENT-REVIEW.md with traceability + categorized gaps. | review [--scope requirements\|architecture\|ux\|phase <slug>], status | concert-develop-reviewreview | | concert-develop-finish | Archives working spec docs to DELETE-ME/ and synthesizes durable application reference docs in the mission folder. | finish [--dry-run], docs-only, status | concert-develop-finishfinish | | concert-refactor | Surveys the repo and writes a ranked refactor plan to .concert/REFACTOR-PLAN-YYYY-MM-DD.md. Utility agent — runnable any time. | create [--scope <path>\|mission\|tests], update, status | concert-refactorcreate --scope mission |

Utility agents

| Agent | Purpose | Common sub-commands | Example | | ----------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------- | ----------------------------------------------- | | concert-status | Read-only composite snapshot of the current mission: stage, pipeline status, branch, modified-but-not-re-evaluated documents, open review gaps by severity, refactor items by priority, next action. Backed by the MCP get_status tool. | (none — invoking the agent is the command) | /concert-status | | concert-token-optimizer | Audits agents, skills, and instruction files against the rules in docs/TOKEN-OPTIMIZATION.md and produces a ranked TOKEN-OPTIMIZATION-PLAN-*.md that concert-develop token-optimize can execute. | audit [--scope agents\|skills\|instructions\|<path>], update, status | /concert-token-optimizer audit --scope agents |

Skills

Concert ships only a small core of agents and commands so concert init and concert update stay tidy. Optional GitHub Copilot skills — focused, reusable guides Copilot can load on demand — live in a separate public repo: he3-org/concert-assets, under .github/skills/<skill-name>/SKILL.md.

The Concert CLI lets you browse that catalog and pull just the skills you want into your repo's .github/skills/ folder, without any of the others cluttering your tree.

npx concert skills list                                # list all available skills
npx concert skills search <term>                       # filter by name/description
npx concert skills add <skill-name> [<skill-name>...]  # download into .github/skills/

Installed skill files are normal files in your repository — commit them like any other code. They are not tracked or removed by concert update; you choose which skills your project uses and when to refresh them.

📝 Authoring new skills? Skills are intended to be shared across projects. Add new skills to he3-org/concert-assets (so every Concert user can skills add them) rather than to your target repo. Use the skill-authoring skill (concert skills add skill-authoring) for the authoring conventions and size targets.

Pinning to a specific source

Both the source repo and the git ref can be overridden with environment variables, useful for trying a fork or pinning to a tag:

CONCERT_ASSETS_REPO=my-org/my-fork CONCERT_ASSETS_REF=v1.2.3 \
  npx concert skills list

Defaults are he3-org/concert-assets and HEAD.

Rules

Optional Claude Code rules — focused project conventions Claude should follow (commit message format, PR descriptions, code style, etc.) — live in the same he3-org/concert-assets repo, but as flat .md files under .claude/rules/.

The CLI mirrors the Skills feature:

npx concert rules list                               # list all available rules
npx concert rules search <term>                      # filter by name/description
npx concert rules add <rule-name> [<rule-name>...]   # download into .claude/rules/

Installed rule files are normal files in your repository — commit them like any other code. They are not tracked or removed by concert update.

📝 Authoring new rules? Like skills, rules are intended to be shared across projects. Add new rules to he3-org/concert-assets under .claude/rules/ rather than to your target repo, so every Concert user can rules add them.

The same CONCERT_ASSETS_REPO and CONCERT_ASSETS_REF environment variables described above for Skills also apply to Rules.

Project Structure

After initialization and running through the SDLC, your repo will contain:

your-repo/
├── concert.jsonc                          # Concert configuration
├── CLAUDE.md                              # Concert section with agent instructions
├── .concert/
│   ├── state.json                         # Current mission pointer
│   ├── REFACTOR-PLAN-YYYY-MM-DD.md        # Step 11 output (utility — runnable any time)
│   ├── missions/
│   │   └── <mission-slug>/
│   │       ├── VISION.md                  # Step 1 output
│   │       ├── REQUIREMENTS.md            # Step 3 output
│   │       ├── ARCHITECTURE.md            # Step 4 output
│   │       ├── UX-DESIGN.md               # Step 5 output (if applicable)
│   │       ├── PLAN.md                    # Step 6 output
│   │       ├── DEVELOPMENT-STATUS.md      # Step 7 progress tracker
│   │       ├── DEVELOPMENT-REVIEW.md      # Step 8 output
│   │       ├── <FEATURE-SLUG>.md          # Step 10 output — application reference doc(s)
│   │       ├── DELETE-ME/                 # Step 10 archive — delete when satisfied
│   │       │   ├── VISION.md
│   │       │   ├── REQUIREMENTS.md
│   │       │   └── ...                    # All working documents moved here
│   │       └── phases/
│   │           ├── 01-foundation/
│   │           │   ├── TASK-setup-config-haiku.md
│   │           │   └── TASK-core-types-sonnet.md
│   │           └── 02-features/
│   │               └── TASK-api-routes-sonnet.md
│   └── workflows/                         # Execution workflow definitions
├── .github/agents/concert-*.agent.md      # GitHub Copilot agents
└── .claude/commands/concert-*.md          # Claude Code slash commands

Managed Files

Files under .github/agents/concert-* and .claude/commands/concert-* are managed by Concert. They are overwritten on concert update and should not be edited manually. All managed files contain a header:

<!-- AUTO-GENERATED BY CONCERT vX.Y.Z — DO NOT EDIT. -->

Files with a stale version header are automatically removed during concert update.

Configuration

Edit concert.jsonc to customize your project:

{
  // Concert configuration
  "project_name": "my-project",
  "concert_version": "1.22.0",
}

Concert preserves your values when updating — only new fields are added and removed fields are cleaned up.

License

MIT