Skip to content

chore: remove spec-kit tooling, historical specs, and migrate dev docs to smee.io#214

Merged
chrisleekr merged 3 commits into
mainfrom
chore/remove-speckit-and-ngrok-docs
Jun 3, 2026
Merged

chore: remove spec-kit tooling, historical specs, and migrate dev docs to smee.io#214
chrisleekr merged 3 commits into
mainfrom
chore/remove-speckit-and-ngrok-docs

Conversation

@chrisleekr

Copy link
Copy Markdown
Owner

Summary

Removes the externally-synced spec-kit ("specify") tooling and all generated specs that were no longer in active use, migrates the local-dev webhook docs from the non-existent dev:ngrok to the already-shipped smee.io relay, and fixes a port mismatch in the smee relay script. ~155 files deleted; no runtime behaviour changed.

Follow-up: spec-kit assets were synced from an upstream tool. The sync must be uninstalled separately so the deleted files do not regenerate on its next run.

Diagram

flowchart LR
    SPK["spec-kit assets<br/>.specify, .claude/skills/speckit-*<br/>.github/agents+prompts/speckit.*<br/>specs/, copilot-instructions.md"]:::removed
    SME["dev webhook relay<br/>dev:ngrok to dev:smee docs<br/>dev-smee.ts target derives from PORT<br/>dev-up.sh exports PORT"]:::added
    CFG["config cleanup<br/>.gitignore .gitleaks.toml<br/>.prettierignore eslint.config.mjs<br/>.vscode/settings.json"]:::updated
    SRC["source + test comments<br/>dead specs/ path citations removed"]:::updated
    classDef removed fill:#c0392b,color:#ffffff
    classDef added fill:#27ae60,color:#ffffff
    classDef updated fill:#2980b9,color:#ffffff
Loading

Changes

spec-kit removal

  • Deleted .specify/ (engine, templates, scripts, constitution, integrations, workflows)
  • Deleted specs/ — 7 completed-feature spec/plan/tasks folders (historical, all shipped)
  • Deleted .claude/skills/speckit-* (14), .github/agents/speckit.* and .github/prompts/speckit.* (14 each), .github/copilot-instructions.md (was entirely the spec-kit block)
  • Stripped dead references left behind: <!-- SPECKIT --> block in CLAUDE.md, .specify/ rule in .gitignore, ^specs/ allowlist in .gitleaks.toml, specs/** ignore in eslint.config.mjs, speckit chat blocks in .vscode/settings.json, spec-kit skip patterns in scripts/em-dash-sweep.ts and docs/build/conventions.md, .specify/speckit entries in .prettierignore
  • Reworded 9 source/test comments in src/ and test/ to drop now-dead specs/... path citations while keeping intent; updated .github/workflows/research.yml to point at surviving paths

smee.io docs migration

  • Rewrote docs/operate/setup.md, docs/operate/github-app.md, CONTRIBUTING.md to reference dev:smee instead of the non-existent dev:ngrok, explaining the smee channel relay model (GitHub posts to a smee channel, a local client relays to localhost; no inbound tunnel)

smee relay port fix (surfaced by review)

  • scripts/dev-smee.ts derives its relay target from PORT (default 3000) instead of a hardcoded :3030
  • scripts/dev-up.sh exports PORT (default 3030) so the server and the smee child agree in both the manual bun run dev flow (3000) and the dev-up.sh flow (3030)
  • Documented SMEE_TARGET in .env.example

Why

The spec-kit tooling and historical specs were no longer used. The docs referenced a dev:ngrok script that never existed in package.json (the repo already ships dev:smee), so the migration also fixes stale setup instructions.

Verification

  • bun run typecheck — clean
  • bun run lint — 0 errors
  • bun run format — clean
  • Em-dash gate — clean
  • git grep confirms zero residual .specify / speckit / specs/ references
  • Both dev port flows traced consistent; dev-smee.ts + dev-up.sh syntax-checked

🤖 Generated with Claude Code

…s to smee.io

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Copilot AI review requested due to automatic review settings June 3, 2026 11:50
@coderabbitai

coderabbitai Bot commented Jun 3, 2026

Copy link
Copy Markdown

Important

Review skipped

Too many files!

This PR contains 180 files, which is 30 over the limit of 150.

To get a review, narrow the scope:
• coderabbit review --type committed # exclude uncommitted changes
• coderabbit review --dir # limit to a subdirectory
• coderabbit review --base # compare against a closer base

⚙️ Run configuration

Configuration used: Organization UI

Review profile: ASSERTIVE

Plan: Pro

Run ID: b76ea9fa-d451-441a-951c-e34735aa74f7

📥 Commits

Reviewing files that changed from the base of the PR and between e3b6e39 and 33c3b80.

📒 Files selected for processing (180)
  • .claude/skills/speckit-analyze/SKILL.md
  • .claude/skills/speckit-checklist/SKILL.md
  • .claude/skills/speckit-clarify/SKILL.md
  • .claude/skills/speckit-constitution/SKILL.md
  • .claude/skills/speckit-git-commit/SKILL.md
  • .claude/skills/speckit-git-feature/SKILL.md
  • .claude/skills/speckit-git-initialize/SKILL.md
  • .claude/skills/speckit-git-remote/SKILL.md
  • .claude/skills/speckit-git-validate/SKILL.md
  • .claude/skills/speckit-implement/SKILL.md
  • .claude/skills/speckit-plan/SKILL.md
  • .claude/skills/speckit-specify/SKILL.md
  • .claude/skills/speckit-tasks/SKILL.md
  • .claude/skills/speckit-taskstoissues/SKILL.md
  • .env.example
  • .github/agents/speckit.analyze.agent.md
  • .github/agents/speckit.checklist.agent.md
  • .github/agents/speckit.clarify.agent.md
  • .github/agents/speckit.constitution.agent.md
  • .github/agents/speckit.git.commit.agent.md
  • .github/agents/speckit.git.feature.agent.md
  • .github/agents/speckit.git.initialize.agent.md
  • .github/agents/speckit.git.remote.agent.md
  • .github/agents/speckit.git.validate.agent.md
  • .github/agents/speckit.implement.agent.md
  • .github/agents/speckit.plan.agent.md
  • .github/agents/speckit.specify.agent.md
  • .github/agents/speckit.tasks.agent.md
  • .github/agents/speckit.taskstoissues.agent.md
  • .github/copilot-instructions.md
  • .github/prompts/speckit.analyze.prompt.md
  • .github/prompts/speckit.checklist.prompt.md
  • .github/prompts/speckit.clarify.prompt.md
  • .github/prompts/speckit.constitution.prompt.md
  • .github/prompts/speckit.git.commit.prompt.md
  • .github/prompts/speckit.git.feature.prompt.md
  • .github/prompts/speckit.git.initialize.prompt.md
  • .github/prompts/speckit.git.remote.prompt.md
  • .github/prompts/speckit.git.validate.prompt.md
  • .github/prompts/speckit.implement.prompt.md
  • .github/prompts/speckit.plan.prompt.md
  • .github/prompts/speckit.specify.prompt.md
  • .github/prompts/speckit.tasks.prompt.md
  • .github/prompts/speckit.taskstoissues.prompt.md
  • .github/workflows/research.yml
  • .gitignore
  • .gitleaks.toml
  • .prettierignore
  • .specify/extensions.yml
  • .specify/extensions/.registry
  • .specify/extensions/git/README.md
  • .specify/extensions/git/commands/speckit.git.commit.md
  • .specify/extensions/git/commands/speckit.git.feature.md
  • .specify/extensions/git/commands/speckit.git.initialize.md
  • .specify/extensions/git/commands/speckit.git.remote.md
  • .specify/extensions/git/commands/speckit.git.validate.md
  • .specify/extensions/git/config-template.yml
  • .specify/extensions/git/extension.yml
  • .specify/extensions/git/git-config.yml
  • .specify/extensions/git/scripts/bash/auto-commit.sh
  • .specify/extensions/git/scripts/bash/create-new-feature.sh
  • .specify/extensions/git/scripts/bash/git-common.sh
  • .specify/extensions/git/scripts/bash/initialize-repo.sh
  • .specify/extensions/git/scripts/powershell/auto-commit.ps1
  • .specify/extensions/git/scripts/powershell/create-new-feature.ps1
  • .specify/extensions/git/scripts/powershell/git-common.ps1
  • .specify/extensions/git/scripts/powershell/initialize-repo.ps1
  • .specify/init-options.json
  • .specify/integration.json
  • .specify/integrations/claude.manifest.json
  • .specify/integrations/claude/scripts/update-context.ps1
  • .specify/integrations/claude/scripts/update-context.sh
  • .specify/integrations/copilot.manifest.json
  • .specify/integrations/copilot/scripts/update-context.ps1
  • .specify/integrations/copilot/scripts/update-context.sh
  • .specify/integrations/cursor-agent.manifest.json
  • .specify/integrations/cursor-agent/scripts/update-context.ps1
  • .specify/integrations/cursor-agent/scripts/update-context.sh
  • .specify/integrations/speckit.manifest.json
  • .specify/memory/constitution.md
  • .specify/scripts/bash/check-prerequisites.sh
  • .specify/scripts/bash/common.sh
  • .specify/scripts/bash/create-new-feature.sh
  • .specify/scripts/bash/setup-plan.sh
  • .specify/scripts/bash/update-agent-context.sh
  • .specify/templates/agent-file-template.md
  • .specify/templates/checklist-template.md
  • .specify/templates/constitution-template.md
  • .specify/templates/plan-template.md
  • .specify/templates/spec-template.md
  • .specify/templates/tasks-template.md
  • .specify/workflows/speckit/workflow.yml
  • .specify/workflows/workflow-registry.json
  • .vscode/settings.json
  • CLAUDE.md
  • CONTRIBUTING.md
  • docs/build/conventions.md
  • docs/operate/github-app.md
  • docs/operate/setup.md
  • docs/use/workflows/index.md
  • eslint.config.mjs
  • scripts/check-no-destructive-actions.ts
  • scripts/dev-smee.ts
  • scripts/dev-up.sh
  • scripts/em-dash-sweep.ts
  • specs/20260409-081113-project-housekeeping/checklists/requirements.md
  • specs/20260409-081113-project-housekeeping/data-model.md
  • specs/20260409-081113-project-housekeeping/plan.md
  • specs/20260409-081113-project-housekeeping/quickstart.md
  • specs/20260409-081113-project-housekeeping/research.md
  • specs/20260409-081113-project-housekeeping/spec.md
  • specs/20260409-081113-project-housekeeping/tasks.md
  • specs/20260410-164348-scheduled-research-workflow/checklists/requirements.md
  • specs/20260410-164348-scheduled-research-workflow/contracts/issue-body.md
  • specs/20260410-164348-scheduled-research-workflow/contracts/labels.md
  • specs/20260410-164348-scheduled-research-workflow/contracts/workflow-inputs.md
  • specs/20260410-164348-scheduled-research-workflow/data-model.md
  • specs/20260410-164348-scheduled-research-workflow/plan.md
  • specs/20260410-164348-scheduled-research-workflow/quickstart.md
  • specs/20260410-164348-scheduled-research-workflow/research.md
  • specs/20260410-164348-scheduled-research-workflow/spec.md
  • specs/20260410-164348-scheduled-research-workflow/tasks.md
  • specs/20260413-191249-daemon-orchestrator-core/checklists/requirements.md
  • specs/20260413-191249-daemon-orchestrator-core/contracts/ws-protocol.md
  • specs/20260413-191249-daemon-orchestrator-core/data-model.md
  • specs/20260413-191249-daemon-orchestrator-core/plan.md
  • specs/20260413-191249-daemon-orchestrator-core/quickstart.md
  • specs/20260413-191249-daemon-orchestrator-core/research.md
  • specs/20260413-191249-daemon-orchestrator-core/spec.md
  • specs/20260413-191249-daemon-orchestrator-core/tasks.md
  • specs/20260415-000159-triage-dispatch-modes/checklists/requirements.md
  • specs/20260415-000159-triage-dispatch-modes/contracts/dispatch-telemetry.md
  • specs/20260415-000159-triage-dispatch-modes/contracts/shared-runner-internal.md
  • specs/20260415-000159-triage-dispatch-modes/contracts/triage-response.schema.json
  • specs/20260415-000159-triage-dispatch-modes/data-model.md
  • specs/20260415-000159-triage-dispatch-modes/plan.md
  • specs/20260415-000159-triage-dispatch-modes/quickstart.md
  • specs/20260415-000159-triage-dispatch-modes/research.md
  • specs/20260415-000159-triage-dispatch-modes/spec.md
  • specs/20260415-000159-triage-dispatch-modes/tasks.md
  • specs/20260421-181205-bot-workflows/checklists/requirements.md
  • specs/20260421-181205-bot-workflows/contracts/handoff-protocol.md
  • specs/20260421-181205-bot-workflows/contracts/registry.schema.ts
  • specs/20260421-181205-bot-workflows/contracts/webhook-dispatch.md
  • specs/20260421-181205-bot-workflows/contracts/workflow_runs.sql
  • specs/20260421-181205-bot-workflows/data-model.md
  • specs/20260421-181205-bot-workflows/plan.md
  • specs/20260421-181205-bot-workflows/quickstart.md
  • specs/20260421-181205-bot-workflows/research.md
  • specs/20260421-181205-bot-workflows/spec.md
  • specs/20260421-181205-bot-workflows/tasks.md
  • specs/20260427-201332-pr-shepherding-merge-ready/checklists/requirements.md
  • specs/20260427-201332-pr-shepherding-merge-ready/contracts/bot-commands.md
  • specs/20260427-201332-pr-shepherding-merge-ready/contracts/mcp-resolve-thread-server.md
  • specs/20260427-201332-pr-shepherding-merge-ready/contracts/probe-graphql-query.md
  • specs/20260427-201332-pr-shepherding-merge-ready/contracts/resolve-thread-mutation.md
  • specs/20260427-201332-pr-shepherding-merge-ready/contracts/webhook-event-subscriptions.md
  • specs/20260427-201332-pr-shepherding-merge-ready/data-model.md
  • specs/20260427-201332-pr-shepherding-merge-ready/plan.md
  • specs/20260427-201332-pr-shepherding-merge-ready/quickstart.md
  • specs/20260427-201332-pr-shepherding-merge-ready/research.md
  • specs/20260427-201332-pr-shepherding-merge-ready/spec.md
  • specs/20260427-201332-pr-shepherding-merge-ready/tasks.md
  • specs/20260429-212559-ship-iteration-wiring/checklists/requirements.md
  • specs/20260429-212559-ship-iteration-wiring/contracts/job-kinds.md
  • specs/20260429-212559-ship-iteration-wiring/contracts/ws-messages.md
  • specs/20260429-212559-ship-iteration-wiring/data-model.md
  • specs/20260429-212559-ship-iteration-wiring/plan.md
  • specs/20260429-212559-ship-iteration-wiring/quickstart.md
  • specs/20260429-212559-ship-iteration-wiring/research.md
  • specs/20260429-212559-ship-iteration-wiring/spec.md
  • specs/20260429-212559-ship-iteration-wiring/tasks.md
  • src/daemon/workflow-executor.ts
  • src/db/migrations/005_workflow_runs.sql
  • src/db/queries/dispatch-stats.ts
  • src/orchestrator/job-dispatcher.ts
  • src/orchestrator/job-queue.ts
  • src/webhook/events/issues.ts
  • src/workflows/dispatcher.ts
  • test/workflows/dispatcher.test.ts

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • 🔍 Trigger review

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

…ync)

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Removes the previously externally-synced spec-kit toolchain and its historical generated artifacts, and updates local development documentation + scripts to use the already-present dev:smee webhook relay (including a PORT-derived relay target) instead of referencing a non-existent dev:ngrok.

Changes:

  • Deleted spec-kit-managed tooling/assets (.specify/, speckit agents/prompts/skills) and historical specs/ documents, plus cleaned up residual references in configs/comments.
  • Migrated local-dev webhook documentation from dev:ngrok guidance to dev:smee/smee.io relay usage.
  • Fixed the dev smee relay target to derive from PORT, and ensured the dev-up.sh harness exports a consistent PORT for all child processes.

Reviewed changes

Copilot reviewed 135 out of 180 changed files in this pull request and generated 3 comments.

Show a summary per file
File Description
test/workflows/dispatcher.test.ts Removes dead specs/… citation from test header comment.
src/workflows/dispatcher.ts Removes dead specs/… citation from dispatcher doc comment.
src/webhook/events/issues.ts Removes dead specs/… citation from label-dispatch protocol comment.
src/orchestrator/job-queue.ts Removes dead specs/… citation from queue schema comment.
src/orchestrator/job-dispatcher.ts Removes dead specs/… citation from scoped job envelope comment.
src/db/queries/dispatch-stats.ts Removes dead specs/… citation from module header comment.
src/db/migrations/005_workflow_runs.sql Removes dead specs/… reference from migration header.
src/daemon/workflow-executor.ts Rewords doc comment to remove dead spec reference.
scripts/em-dash-sweep.ts Removes skip rules/comments for deleted specs/ + spec-kit-managed paths.
scripts/dev-up.sh Exports PORT (default 3030) so dev server/daemon/smee relay agree.
scripts/dev-smee.ts Derives relay target from PORT (overrideable by SMEE_TARGET).
scripts/check-no-destructive-actions.ts Removes dead specs/… reference in scoped-executor comment.
eslint.config.mjs Drops specs/** ignore now that specs are removed.
docs/operate/setup.md Rewrites local dev webhook docs to use dev:smee/smee.io relay model.
docs/operate/github-app.md Updates GitHub App local-dev webhook URL guidance to smee.io + dev:smee.
docs/build/conventions.md Updates em-dash gate docs to remove spec-kit/specs skip references.
CONTRIBUTING.md Updates contributor docs to reference dev:smee instead of dev:ngrok.
CLAUDE.md Removes now-dead SPECKIT marker block.
.vscode/settings.json Removes speckit chat prompt/tooling configuration entries.
.prettierignore Removes spec-kit-specific ignores; retains relevant managed paths.
.gitleaks.toml Removes specs/ allowlist entry now that specs are removed.
.gitignore Removes spec-kit ephemeral ignore rules (no longer applicable).
.github/workflows/research.yml Removes specs/… references and updates docs-focus paths to docs/.
.env.example Documents SMEE_TARGET override and its default target derivation.
specs/20260429-212559-ship-iteration-wiring/quickstart.md Deleted historical spec artifact.
specs/20260429-212559-ship-iteration-wiring/data-model.md Deleted historical spec artifact.
specs/20260429-212559-ship-iteration-wiring/contracts/ws-messages.md Deleted historical spec artifact.
specs/20260429-212559-ship-iteration-wiring/contracts/job-kinds.md Deleted historical spec artifact.
specs/20260429-212559-ship-iteration-wiring/checklists/requirements.md Deleted historical spec artifact.
specs/20260427-201332-pr-shepherding-merge-ready/contracts/resolve-thread-mutation.md Deleted historical spec artifact.
specs/20260427-201332-pr-shepherding-merge-ready/contracts/probe-graphql-query.md Deleted historical spec artifact.
specs/20260427-201332-pr-shepherding-merge-ready/contracts/mcp-resolve-thread-server.md Deleted historical spec artifact.
specs/20260427-201332-pr-shepherding-merge-ready/checklists/requirements.md Deleted historical spec artifact.
specs/20260421-181205-bot-workflows/quickstart.md Deleted historical spec artifact.
specs/20260421-181205-bot-workflows/contracts/workflow_runs.sql Deleted historical spec artifact.
specs/20260421-181205-bot-workflows/contracts/webhook-dispatch.md Deleted historical spec artifact.
specs/20260421-181205-bot-workflows/contracts/registry.schema.ts Deleted historical spec artifact.
specs/20260421-181205-bot-workflows/contracts/handoff-protocol.md Deleted historical spec artifact.
specs/20260421-181205-bot-workflows/checklists/requirements.md Deleted historical spec artifact.
specs/20260415-000159-triage-dispatch-modes/contracts/triage-response.schema.json Deleted historical spec artifact.
specs/20260415-000159-triage-dispatch-modes/contracts/shared-runner-internal.md Deleted historical spec artifact.
specs/20260415-000159-triage-dispatch-modes/contracts/dispatch-telemetry.md Deleted historical spec artifact.
specs/20260415-000159-triage-dispatch-modes/checklists/requirements.md Deleted historical spec artifact.
specs/20260413-191249-daemon-orchestrator-core/checklists/requirements.md Deleted historical spec artifact.
specs/20260410-164348-scheduled-research-workflow/contracts/workflow-inputs.md Deleted historical spec artifact.
specs/20260410-164348-scheduled-research-workflow/contracts/labels.md Deleted historical spec artifact.
specs/20260410-164348-scheduled-research-workflow/contracts/issue-body.md Deleted historical spec artifact.
specs/20260410-164348-scheduled-research-workflow/checklists/requirements.md Deleted historical spec artifact.
specs/20260409-081113-project-housekeeping/research.md Deleted historical spec artifact.
specs/20260409-081113-project-housekeeping/quickstart.md Deleted historical spec artifact.
specs/20260409-081113-project-housekeeping/data-model.md Deleted historical spec artifact.
specs/20260409-081113-project-housekeeping/checklists/requirements.md Deleted historical spec artifact.
.specify/workflows/workflow-registry.json Deleted spec-kit workflow registry artifact.
.specify/workflows/speckit/workflow.yml Deleted spec-kit workflow definition.
.specify/templates/spec-template.md Deleted spec-kit template.
.specify/templates/plan-template.md Deleted spec-kit template.
.specify/templates/constitution-template.md Deleted spec-kit template.
.specify/templates/checklist-template.md Deleted spec-kit template.
.specify/templates/agent-file-template.md Deleted spec-kit template.
.specify/scripts/bash/setup-plan.sh Deleted spec-kit script.
.specify/scripts/bash/check-prerequisites.sh Deleted spec-kit script.
.specify/integrations/speckit.manifest.json Deleted spec-kit integration manifest.
.specify/integrations/cursor-agent/scripts/update-context.sh Deleted spec-kit integration script.
.specify/integrations/cursor-agent/scripts/update-context.ps1 Deleted spec-kit integration script.
.specify/integrations/cursor-agent.manifest.json Deleted spec-kit integration manifest.
.specify/integrations/copilot/scripts/update-context.sh Deleted spec-kit integration script.
.specify/integrations/copilot/scripts/update-context.ps1 Deleted spec-kit integration script.
.specify/integrations/copilot.manifest.json Deleted spec-kit integration manifest.
.specify/integrations/claude/scripts/update-context.sh Deleted spec-kit integration script.
.specify/integrations/claude/scripts/update-context.ps1 Deleted spec-kit integration script.
.specify/integrations/claude.manifest.json Deleted spec-kit integration manifest.
.specify/integration.json Deleted spec-kit integration selector.
.specify/init-options.json Deleted spec-kit init options.
.specify/extensions/git/scripts/powershell/initialize-repo.ps1 Deleted spec-kit git extension script.
.specify/extensions/git/scripts/powershell/git-common.ps1 Deleted spec-kit git extension script.
.specify/extensions/git/scripts/powershell/auto-commit.ps1 Deleted spec-kit git extension script.
.specify/extensions/git/scripts/bash/initialize-repo.sh Deleted spec-kit git extension script.
.specify/extensions/git/scripts/bash/git-common.sh Deleted spec-kit git extension script.
.specify/extensions/git/scripts/bash/auto-commit.sh Deleted spec-kit git extension script.
.specify/extensions/git/README.md Deleted spec-kit git extension docs.
.specify/extensions/git/git-config.yml Deleted spec-kit git extension config.
.specify/extensions/git/extension.yml Deleted spec-kit git extension definition.
.specify/extensions/git/config-template.yml Deleted spec-kit git extension template.
.specify/extensions/git/commands/speckit.git.validate.md Deleted spec-kit command doc.
.specify/extensions/git/commands/speckit.git.remote.md Deleted spec-kit command doc.
.specify/extensions/git/commands/speckit.git.initialize.md Deleted spec-kit command doc.
.specify/extensions/git/commands/speckit.git.feature.md Deleted spec-kit command doc.
.specify/extensions/git/commands/speckit.git.commit.md Deleted spec-kit command doc.
.specify/extensions/.registry Deleted spec-kit extension registry.
.specify/extensions.yml Deleted spec-kit extension config.
.github/copilot-instructions.md Deleted spec-kit-only Copilot instructions file.
.github/prompts/speckit.analyze.prompt.md Deleted speckit prompt stub.
.github/prompts/speckit.checklist.prompt.md Deleted speckit prompt stub.
.github/prompts/speckit.clarify.prompt.md Deleted speckit prompt stub.
.github/prompts/speckit.constitution.prompt.md Deleted speckit prompt stub.
.github/prompts/speckit.git.commit.prompt.md Deleted speckit prompt stub.
.github/prompts/speckit.git.feature.prompt.md Deleted speckit prompt stub.
.github/prompts/speckit.git.initialize.prompt.md Deleted speckit prompt stub.
.github/prompts/speckit.git.remote.prompt.md Deleted speckit prompt stub.
.github/prompts/speckit.git.validate.prompt.md Deleted speckit prompt stub.
.github/prompts/speckit.implement.prompt.md Deleted speckit prompt stub.
.github/prompts/speckit.plan.prompt.md Deleted speckit prompt stub.
.github/prompts/speckit.specify.prompt.md Deleted speckit prompt stub.
.github/prompts/speckit.tasks.prompt.md Deleted speckit prompt stub.
.github/prompts/speckit.taskstoissues.prompt.md Deleted speckit prompt stub.
.github/agents/speckit.constitution.agent.md Deleted speckit agent definition.
.github/agents/speckit.git.commit.agent.md Deleted speckit agent definition.
.github/agents/speckit.git.feature.agent.md Deleted speckit agent definition.
.github/agents/speckit.git.initialize.agent.md Deleted speckit agent definition.
.github/agents/speckit.git.remote.agent.md Deleted speckit agent definition.
.github/agents/speckit.git.validate.agent.md Deleted speckit agent definition.
.github/agents/speckit.plan.agent.md Deleted speckit agent definition.
.github/agents/speckit.taskstoissues.agent.md Deleted speckit agent definition.
.claude/skills/speckit-taskstoissues/SKILL.md Deleted speckit skill definition.
.claude/skills/speckit-plan/SKILL.md Deleted speckit skill definition.
.claude/skills/speckit-git-validate/SKILL.md Deleted speckit skill definition.
.claude/skills/speckit-git-remote/SKILL.md Deleted speckit skill definition.
.claude/skills/speckit-git-initialize/SKILL.md Deleted speckit skill definition.
.claude/skills/speckit-git-feature/SKILL.md Deleted speckit skill definition.
.claude/skills/speckit-git-commit/SKILL.md Deleted speckit skill definition.

Comment thread docs/operate/setup.md Outdated
Comment thread docs/operate/setup.md Outdated
Comment thread CONTRIBUTING.md
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
@chrisleekr chrisleekr merged commit dc4206f into main Jun 3, 2026
9 checks passed
@chrisleekr chrisleekr deleted the chore/remove-speckit-and-ngrok-docs branch June 3, 2026 12:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants