Skip to content

chore: remove /inbox and /implement-feature commands#123

Merged
orioltf merged 4 commits into
developfrom
feature/remove-outdated-commands
May 22, 2026
Merged

chore: remove /inbox and /implement-feature commands#123
orioltf merged 4 commits into
developfrom
feature/remove-outdated-commands

Conversation

@orioltf
Copy link
Copy Markdown
Member

@orioltf orioltf commented May 22, 2026

Summary

  • /inbox is removed — it duplicated /triage's idea capture entry point.
  • /implement-feature is removed — it was an interim AFK Feature Runner being replaced by unic-dlc-build (shipped by unic-archon-dlc), per ADR-0030.
  • New ADR-0031 supersedes ADR-0027 and ADR-0029, which described /implement-feature's internals.

Why

/inbox was introduced before /triage was fully understood; ideas can now go straight to GitHub Issues or through /triage. /implement-feature was a trial to replace ralph-orchestrator with a Claude Code skill — converging on a single Feature Runner (unic-dlc-build) reduces the harness surface.

Changes

Deleted

  • .claude/commands/inbox.md
  • .claude/skills/implement-feature/ (SKILL.md + references)
  • docs/inbox/README.md

ADRs

  • Added 0031-retire-implement-feature-skill.md
  • 0027-feature-runner-context-bundle.md → status Superseded by ADR-0031
  • 0029-feature-runner-afk-invocation.md → status Superseded by ADR-0031

Docs rewritten to current state (manual /tdd, unic-dlc-build as the long-term runner)

  • AGENTS.md — drop inbox/ tree entry + Inbox subsection
  • CONTRIBUTING.md — capture via GitHub Issue / /triage; implement via /tdd
  • docs/process/development-workflow.md — Phase 1 capture rewritten, Phase 7 split into manual today + AFK later
  • docs/process/ai-development.md — full rewrite; Feature Runner is the concept, manual /tdd is the current implementation
  • docs/agents/feature-runner.md — collapsed to a short pointer doc

Kept as historical artifacts (per keep historical, remove forward-looking stance)

  • The 10 captured ideas under docs/inbox/*.md
  • docs/issues/feature-runner/PRD.md (already closed)
  • Mentions of /implement-feature in docs/conversations/, docs/research/, retired docs/plans/, and superseded ADRs

Test plan

  • CI pnpm ci:check passes (Biome + Prettier)
  • grep -rn "implement-feature\|/inbox\b" --include='*.md' shows references only in historical/superseded files, not in any forward-looking doc
  • .claude/commands/ is empty; .claude/skills/ no longer contains implement-feature/
  • ADR-0027 and ADR-0029 both show Superseded by ADR-0031

🤖 Generated with Claude Code

orioltf and others added 2 commits May 22, 2026 20:53
/inbox duplicated /triage's idea capture, and /implement-feature was an
interim AFK runner being replaced by unic-dlc-build (see ADR-0031).

- Delete .claude/commands/inbox.md, .claude/skills/implement-feature/,
  and docs/inbox/README.md
- Add ADR-0031 superseding ADR-0027 and ADR-0029
- Update AGENTS.md, CONTRIBUTING.md, and the process/agents docs to
  describe the current state (manual /tdd, unic-dlc-build as the
  long-term Feature Runner)

The 10 captured ideas under docs/inbox/ are kept as historical
artifacts; docs/issues/feature-runner/PRD.md is left untouched (already
closed).

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

This PR retires the interim Claude Code entrypoints (/inbox and /implement-feature) and updates repo documentation/ADRs to reflect the current workflow: idea capture via GitHub Issues or /triage, manual execution via /tdd, and unic-dlc-build as the long-term AFK Feature Runner.

Changes:

  • Removed /inbox command docs and the entire /implement-feature skill (including its references/templates).
  • Added ADR-0031 and marked ADR-0027/ADR-0029 as superseded.
  • Rewrote workflow/runner docs to describe manual /tdd execution now and unic-dlc-build later.

Reviewed changes

Copilot reviewed 13 out of 13 changed files in this pull request and generated 2 comments.

Show a summary per file
File Description
docs/process/development-workflow.md Removes /inbox capture flow; reframes execution around manual /tdd now and unic-dlc-build later.
docs/process/ai-development.md Rewrites the “deep guide” to remove /implement-feature as the current runner and clarify manual vs AFK execution.
docs/inbox/README.md Deletes the inbox conventions doc (inbox kept only as historical artifacts).
docs/agents/feature-runner.md Collapses Feature Runner doc into a concept/pointer doc describing current manual /tdd and long-term unic-dlc-build.
docs/adr/0031-retire-implement-feature-skill.md New ADR documenting retirement of /implement-feature + /inbox and converging on unic-dlc-build.
docs/adr/0029-feature-runner-afk-invocation.md Marks ADR as superseded by ADR-0031.
docs/adr/0027-feature-runner-context-bundle.md Marks ADR as superseded by ADR-0031.
CONTRIBUTING.md Updates contributor workflow guidance to remove /inbox + /implement-feature and point to manual /tdd + future runner.
AGENTS.md Removes the docs tree entry and section for inbox.
.claude/skills/implement-feature/SKILL.md Deletes the /implement-feature skill definition.
.claude/skills/implement-feature/references/tdd-prompt-template.md Deletes the AFK /tdd prompt template used by the retired skill.
.claude/skills/implement-feature/references/runner-output-formats.md Deletes the retired runner’s output-format reference.
.claude/commands/inbox.md Deletes the /inbox command definition.
Comments suppressed due to low confidence (1)

AGENTS.md:29

  • docs/inbox/ still exists in the repo (historical idea files remain), but it has been removed from the workspace tree here. That makes the tree inaccurate for navigation/discovery. Consider re-adding a docs/inbox/ entry marked as historical/retired (or move/delete the remaining docs/inbox/*.md artifacts).
docs/
├── adr/                      # Architectural Decision Records
├── agents/                   # Agent skill documentation
├── issues/                   # Grilled and scoped feature issues
├── plans/                    # Retired spec files (historical)
├── process/                  # Process and workflow guides
└── research/                 # Research notes and explorations

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread docs/process/development-workflow.md
Comment thread docs/process/ai-development.md
orioltf and others added 2 commits May 22, 2026 21:08
Phase 1 said capture via GitHub Issue while Phase 5/6 produced
docs/issues/<slug>/ artifacts without saying how the two relate.
GitHub Issues are the canonical tracker for state and ownership;
docs/issues/<slug>/ holds the grilled PRD + ticket files that the
Feature Runner consumes. Not every GitHub Issue becomes a Feature
directory.

Also re-adds docs/inbox/ to the AGENTS.md workspace tree, marked
historical, matching how docs/plans/ is listed.

Addresses Copilot review on PR #123.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
…ssues

The clause stated that the existing Feature directories under
docs/issues/ predate GitHub being adopted as the primary tracker.
That ordering isn't documented anywhere, so removing the claim
rather than asserting it.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
@orioltf orioltf merged commit a18bc58 into develop May 22, 2026
4 checks passed
@orioltf orioltf deleted the feature/remove-outdated-commands branch May 22, 2026 19:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants