[PR #101] [MERGED] feat: add spec-driven-dev and ai-engineering starter collections #100

Closed
opened 2026-08-15 07:30:13 +02:00 by zaph0d · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/niels-emmer/myace/pull/101
Author: @niels-emmer
Created: 8/14/2026
Status: Merged
Merged: 8/14/2026
Merged by: @niels-emmer

Base: mainHead: feat/spec-driven-dev-ai-engineering-collections


📝 Commits (2)

  • bcb2711 feat: add spec-driven-dev and ai-engineering starter collections
  • c713ea1 docs: record PR number in spec-driven-dev/ai-engineering plan doc

📊 Changes

17 files changed (+456 additions, -4 deletions)

View changed files

📝 README.md (+20 -4)
📝 backend/app/services/seed_collections.py (+20 -0)
collections/additional/ai-engineering/AGENTS.md (+39 -0)
collections/additional/ai-engineering/agents/ai-engineer.md (+28 -0)
collections/additional/ai-engineering/agents/context-manager.md (+26 -0)
collections/additional/ai-engineering/agents/prompt-engineer.md (+26 -0)
collections/additional/ai-engineering/skills/agent-design-principles/SKILL.md (+31 -0)
collections/additional/spec-driven-dev/AGENTS.md (+38 -0)
collections/additional/spec-driven-dev/commands/sdd-analyze.md (+13 -0)
collections/additional/spec-driven-dev/commands/sdd-clarify.md (+13 -0)
collections/additional/spec-driven-dev/commands/sdd-constitution.md (+13 -0)
collections/additional/spec-driven-dev/commands/sdd-implement.md (+13 -0)
collections/additional/spec-driven-dev/commands/sdd-plan.md (+13 -0)
collections/additional/spec-driven-dev/commands/sdd-specify.md (+13 -0)
collections/additional/spec-driven-dev/commands/sdd-tasks.md (+13 -0)
collections/base/software-engineer/agents/debugger.md (+28 -0)
docs/plans/spec-driven-dev-and-ai-engineering-collections.md (+109 -0)

📄 Description

Summary

  • Adds two new additional/ starter collections mined from the OSS agentic-coding ecosystem:
    • spec-driven-devsdd-{constitution,specify,clarify,plan,tasks,analyze,implement} commands adapted from GitHub's spec-kit (MIT), namespaced to avoid colliding with software-engineer's existing plan.md/verify.md (AGENTS.md rule 29).
    • ai-engineeringprompt-engineer/ai-engineer/context-manager agents plus an agent-design-principles skill grounded in 12-factor-agents (Apache-2.0).
  • Adds a debugger agent to software-engineer — a root-cause investigation persona no existing collection had.
  • Registers both new collections in seed_collections.py; updates README's starter-pack counts and adds a Credits section citing sources.
  • Full research write-up — including sources evaluated but deliberately not used (contains-studio/agents has no license; BMAD-METHOD's format/trademark; claude-flow/SuperClaude are tools, not portable config) — is in docs/plans/spec-driven-dev-and-ai-engineering-collections.md.

Test plan

  • pytest (backend): 202 passed
  • ruff check clean; mypy shows zero new errors (confirmed against pre-existing baseline via stash diff)
  • Dev backend auto-reloaded and seeded both new collections correctly (9 and 7 artifacts respectively)
  • Every new file exercised directly through the scanner's parsers (_parse_agent_file, _parse_command_file, _parse_skill_file, _parse_agents_md) — all parse cleanly
  • Compiled a real profile (software-engineer + spec-driven-dev + ai-engineering) via compile_profile() to claude-code and opencode — 26 files each, all new artifacts present, plan.md and sdd-plan.md coexist (no rule-29 collision)
  • Grepped collections/ for duplicate agent/command filenames and skill names post-authoring — none found

🤖 Generated with Claude Code


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/niels-emmer/myace/pull/101 **Author:** [@niels-emmer](https://github.com/niels-emmer) **Created:** 8/14/2026 **Status:** ✅ Merged **Merged:** 8/14/2026 **Merged by:** [@niels-emmer](https://github.com/niels-emmer) **Base:** `main` ← **Head:** `feat/spec-driven-dev-ai-engineering-collections` --- ### 📝 Commits (2) - [`bcb2711`](https://github.com/niels-emmer/myace/commit/bcb2711597aa720d59b2012dfeff4868e908e4dd) feat: add spec-driven-dev and ai-engineering starter collections - [`c713ea1`](https://github.com/niels-emmer/myace/commit/c713ea1d671dd1448a53864d8e67c5980bd69866) docs: record PR number in spec-driven-dev/ai-engineering plan doc ### 📊 Changes **17 files changed** (+456 additions, -4 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+20 -4) 📝 `backend/app/services/seed_collections.py` (+20 -0) ➕ `collections/additional/ai-engineering/AGENTS.md` (+39 -0) ➕ `collections/additional/ai-engineering/agents/ai-engineer.md` (+28 -0) ➕ `collections/additional/ai-engineering/agents/context-manager.md` (+26 -0) ➕ `collections/additional/ai-engineering/agents/prompt-engineer.md` (+26 -0) ➕ `collections/additional/ai-engineering/skills/agent-design-principles/SKILL.md` (+31 -0) ➕ `collections/additional/spec-driven-dev/AGENTS.md` (+38 -0) ➕ `collections/additional/spec-driven-dev/commands/sdd-analyze.md` (+13 -0) ➕ `collections/additional/spec-driven-dev/commands/sdd-clarify.md` (+13 -0) ➕ `collections/additional/spec-driven-dev/commands/sdd-constitution.md` (+13 -0) ➕ `collections/additional/spec-driven-dev/commands/sdd-implement.md` (+13 -0) ➕ `collections/additional/spec-driven-dev/commands/sdd-plan.md` (+13 -0) ➕ `collections/additional/spec-driven-dev/commands/sdd-specify.md` (+13 -0) ➕ `collections/additional/spec-driven-dev/commands/sdd-tasks.md` (+13 -0) ➕ `collections/base/software-engineer/agents/debugger.md` (+28 -0) ➕ `docs/plans/spec-driven-dev-and-ai-engineering-collections.md` (+109 -0) </details> ### 📄 Description ## Summary - Adds two new `additional/` starter collections mined from the OSS agentic-coding ecosystem: - **`spec-driven-dev`** — `sdd-{constitution,specify,clarify,plan,tasks,analyze,implement}` commands adapted from GitHub's [spec-kit](https://github.com/github/spec-kit) (MIT), namespaced to avoid colliding with `software-engineer`'s existing `plan.md`/`verify.md` (AGENTS.md rule 29). - **`ai-engineering`** — `prompt-engineer`/`ai-engineer`/`context-manager` agents plus an `agent-design-principles` skill grounded in [12-factor-agents](https://github.com/humanlayer/12-factor-agents) (Apache-2.0). - Adds a `debugger` agent to `software-engineer` — a root-cause investigation persona no existing collection had. - Registers both new collections in `seed_collections.py`; updates README's starter-pack counts and adds a Credits section citing sources. - Full research write-up — including sources evaluated but deliberately not used (contains-studio/agents has no license; BMAD-METHOD's format/trademark; claude-flow/SuperClaude are tools, not portable config) — is in [`docs/plans/spec-driven-dev-and-ai-engineering-collections.md`](docs/plans/spec-driven-dev-and-ai-engineering-collections.md). ## Test plan - [x] `pytest` (backend): 202 passed - [x] `ruff check` clean; `mypy` shows zero new errors (confirmed against pre-existing baseline via stash diff) - [x] Dev backend auto-reloaded and seeded both new collections correctly (9 and 7 artifacts respectively) - [x] Every new file exercised directly through the scanner's parsers (`_parse_agent_file`, `_parse_command_file`, `_parse_skill_file`, `_parse_agents_md`) — all parse cleanly - [x] Compiled a real profile (`software-engineer` + `spec-driven-dev` + `ai-engineering`) via `compile_profile()` to `claude-code` and `opencode` — 26 files each, all new artifacts present, `plan.md` and `sdd-plan.md` coexist (no rule-29 collision) - [x] Grepped `collections/` for duplicate agent/command filenames and skill names post-authoring — none found 🤖 Generated with [Claude Code](https://claude.com/claude-code) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
zaph0d 2026-08-15 07:30:13 +02:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
github-mirrors/myace#100
No description provided.