Skip to content
| Marketplace
Sign in
Visual Studio Code>AI>Kiro for CopilotNew to Visual Studio Code? Get it now.
Kiro for Copilot

Kiro for Copilot

moonolgerd

|
1 install
| (0) | Free
Spec-driven development with GitHub Copilot — requirements, design, and task tracking linked to your code.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Copilot Specs

CI Release VS Marketplace Open VSX Installs Rating

Spec-driven development for VS Code + GitHub Copilot.

copilot-specs bridges the gap between planning and implementation — write structured requirements, design, and task documents, then have GitHub Copilot generate and execute them against your codebase. Every task links back to real source files via CodeLens so nothing gets lost.

Install

Install from the VS Code Marketplace →

Or search for copilot-specs in the VS Code Extensions panel (Ctrl+Shift+X).

Spec explorer and task progress in the sidebar

CodeLens linking tasks to implementation files

Tasks marked completed

Features

  • Spec lifecycle

    • Create, rename, and delete specs under .github/instructions/specs/<spec-name>/
    • Scaffold files from templates:
      • requirements.instructions.md
      • design.instructions.md
      • implementation-tasks.instructions.md
  • Task tracking + progress

    • Parse markdown checkbox tasks and subtasks
    • Track completion progress per spec
    • Show spec progress in the status bar
  • Traceability with CodeLens

    • Link requirements ↔ tasks
    • Link tasks ↔ implementation files
    • Auto-link task references to code
  • Copilot integration

    • Generate requirements, design, and tasks with chat participant commands
    • Start Task opens a rich context prompt in agent mode — the agent can read files, make edits, and run tests
    • Verify All Tasks opens a spec-wide agent-mode verification prompt to validate completion against the codebase
  • Project guidance + tooling

    • Instructions, rules, skills, and prompts explorer
    • Agent hooks explorer (.github/hooks/*.json)
    • MCP servers explorer and toggle support

Requirements

  • VS Code 1.93+
  • GitHub Copilot Chat (for AI generation and autopilot features)

Quick Start

  1. Install the extension from the Marketplace.
  2. Open a workspace and run Copilot Specs: New Spec from the Command Palette (Ctrl+Shift+P).
  3. Enter a name — three scaffold files are created under .github/instructions/specs/<name>/:
    • requirements.instructions.md — define what to build
    • design.instructions.md — describe the architecture
    • implementation-tasks.instructions.md — break work into checkable tasks
  4. Use the @spec chat participant in Copilot Chat to generate content:
    @spec create a user authentication feature
    
  5. Click Start Task on any task — a rich context prompt opens in agent mode where Copilot can read your code, make edits, and verify the result.
  6. Click Verify All Tasks with Copilot on a spec row to run a full completion verification workflow in agent mode.

Development

Prerequisites: Node.js 22+

Install dependencies:

npm ci

Build TypeScript:

npm run compile

Bundle extension:

npm run bundle

Watch mode:

npm run dev

Lint:

npm run lint

Run the extension locally

  1. Open this folder in VS Code.
  2. Run npm ci.
  3. Press F5 to launch the Extension Development Host.
  4. In the new window, run commands from the Command Palette, such as:
    • Copilot Specs: New Spec
    • Copilot Specs: Generate with Copilot
  • Copilot Specs: Verify All Tasks with Copilot

CI/CD

Workflows are in .github/workflows/:

  • ci.yml

    • Runs on PRs and pushes to main
    • Executes npm ci, npm run compile, and npm run bundle
  • release.yml

    • Runs on tag push v* or manual dispatch
    • Packages two .vsix artifacts: copilot-specs and Kiro for Copilot
    • Publishes both extensions to VS Marketplace and/or Open VSX based on selected target and configured tokens

Publishing secrets:

  • VSCE_PAT
  • OPEN_VSX_TOKEN

For workflow details, see .github/workflows/README.md.

Publishing

Tag-based release example:

git tag v0.1.1
git push origin v0.1.1

Manual release is also available through the GitHub Actions UI.

Manual publish_target options:

  • dry-run
  • marketplace
  • open-vsx
  • both

On tag pushes (v*), the release workflow uses both and attempts to publish both extensions to each selected marketplace using the configured base tokens.

Repository layout

  • src/ — extension source
  • src/templates/ — default spec templates
  • .github/instructions/specs/ — generated/managed spec docs in a workspace
  • .github/prompts/ — reusable prompt files (.prompt.md)
  • .github/hooks/ — hook JSON definitions

Hook JSON format

Hook files live in .github/hooks/*.json in your workspace. Each file contains a top-level hooks object whose keys are event names and whose values are arrays of command entries.

Supported event names: SessionStart, UserPromptSubmit, PreToolUse, PostToolUse, PreCompact, SubagentStart, SubagentStop, Stop.

{
  "hooks": {
    "SessionStart": [
      {
        "type": "command",
        "command": "npm run lint",
        "cwd": "${workspaceFolder}",
        "timeout": 30000
      }
    ],
    "PostToolUse": [
      {
        "type": "command",
        "command": "npm test",
        "windows": "npm.cmd test",
        "env": { "CI": "true" }
      }
    ]
  }
}
Field Type Required Description
type "command" yes Must be "command"
command string yes Shell command to run (default / Linux / macOS)
windows string no Override command for Windows
linux string no Override command for Linux
osx string no Override command for macOS
cwd string no Working directory (supports ${workspaceFolder})
env object no Additional environment variables
timeout number no Timeout in milliseconds

MCP server config format

MCP server configurations are discovered from the following JSONC files (in priority order):

  • .github/mcp.json — workspace-level (preferred)
  • .vscode/mcp.json — workspace-level
  • .mcp.json — project-level
  • mcp.json — root-level

Each file follows the VS Code MCP server schema:

{
  "servers": {
    "my-server": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "my-mcp-package"],
      "env": { "API_KEY": "${env:MY_API_KEY}" },
    },
    "remote-server": {
      "type": "sse",
      "url": "https://example.com/mcp/sse",
    },
  },
}

The Copilot Specs MCP explorer lists all discovered servers and lets you toggle them on/off via the tree view. Toggling updates the server enabled state in the applicable config file.

License

MIT — see LICENSE.

Changelog

See CHANGELOG.md for release history.

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2026 Microsoft