[PR #81] [MERGED] feat: add 4 new starter packs; fix mode fields, expand compatibility, tighten adapter output #86

Closed
opened 2026-08-13 19:11:27 +02:00 by zaph0d · 0 comments
Owner

📋 Pull Request Information

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

Base: mainHead: feat/starter-pack-enhancements


📝 Commits (1)

  • d1b2628 feat: add 4 new starter packs; fix mode fields, expand compatibility, tighten adapter output

📊 Changes

89 files changed (+727 additions, -66 deletions)

View changed files

📝 backend/app/adapters/claude_code.py (+3 -1)
📝 backend/app/adapters/opencode.py (+3 -1)
📝 backend/app/services/seed_collections.py (+32 -0)
collections/additional/android-developer/AGENTS.md (+21 -0)
collections/additional/android-developer/agents/android-builder.md (+28 -0)
collections/additional/android-developer/agents/android-reviewer.md (+24 -0)
collections/additional/android-developer/skills/android-testing/SKILL.md (+24 -0)
collections/additional/android-developer/skills/jetpack-compose-conventions/SKILL.md (+24 -0)
collections/additional/android-developer/skills/play-store-readiness/SKILL.md (+24 -0)
📝 collections/additional/auditor/agents/compliance-reviewer.md (+2 -2)
📝 collections/additional/auditor/agents/security-auditor.md (+2 -1)
📝 collections/additional/auditor/skills/data-classification-guide/SKILL.md (+1 -1)
📝 collections/additional/auditor/skills/secrets-scan-checklist/SKILL.md (+1 -1)
📝 collections/additional/auditor/skills/security-checklist/SKILL.md (+1 -1)
📝 collections/additional/auditor/skills/threat-modeling-quickstart/SKILL.md (+1 -1)
📝 collections/additional/backend/agents/api-reviewer.md (+1 -1)
📝 collections/additional/backend/agents/backend-builder.md (+2 -2)
📝 collections/additional/backend/skills/api-design-checklist/SKILL.md (+1 -1)
📝 collections/additional/backend/skills/backend-test-patterns/SKILL.md (+1 -1)
📝 collections/additional/backend/skills/migration-safety/SKILL.md (+1 -1)

...and 69 more files

📄 Description

Summary

Add 4 new starter packs, fix consistency issues, expand target framework support, and tighten compiled adapter output.

New collections (28 files)

  • DevOps/Platform Engineer (additional): CI/CD pipelines, container builds, observability, incident response
  • Java/Spring Developer (additional): layered architecture, DI discipline, Spring Boot conventions, test pyramid
  • iOS Developer (additional): SwiftUI-first, state management, App Store readiness, offline-first
  • Android Developer (additional): Jetpack Compose-first, state hoisting, Play Store readiness, lifecycle awareness

Fixes & improvements

  • Agent mode fields: frontend-builder, backend-builder, iac-builder changed from primary to subagent
  • Vibecoder opencode.json: added recommending claude-sonnet-4
  • Target compatibility: expanded to all 12 registered adapters across 81 artifact files
  • Auditor gap: security-auditor now produces clean-pass notes; compliance-reviewer handles them explicitly
  • Adapter output tightening: opencode and claude-code adapters now emit only the first paragraph of each rule in compiled AGENTS.md/CLAUDE.md

Verification

  • pytest: 200 passed
  • ruff: all clean

Type of change

  • feat (new feature)
  • refactor (adapter output tightening)

Checklist

  • Self-review completed
  • No new warnings
  • Tests pass
  • Documentation updated (seed_collections.py)

🔄 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/81 **Author:** [@niels-emmer](https://github.com/niels-emmer) **Created:** 8/12/2026 **Status:** ✅ Merged **Merged:** 8/12/2026 **Merged by:** [@niels-emmer](https://github.com/niels-emmer) **Base:** `main` ← **Head:** `feat/starter-pack-enhancements` --- ### 📝 Commits (1) - [`d1b2628`](https://github.com/niels-emmer/myace/commit/d1b262828b006c55919e64040ad765a9619e3385) feat: add 4 new starter packs; fix mode fields, expand compatibility, tighten adapter output ### 📊 Changes **89 files changed** (+727 additions, -66 deletions) <details> <summary>View changed files</summary> 📝 `backend/app/adapters/claude_code.py` (+3 -1) 📝 `backend/app/adapters/opencode.py` (+3 -1) 📝 `backend/app/services/seed_collections.py` (+32 -0) ➕ `collections/additional/android-developer/AGENTS.md` (+21 -0) ➕ `collections/additional/android-developer/agents/android-builder.md` (+28 -0) ➕ `collections/additional/android-developer/agents/android-reviewer.md` (+24 -0) ➕ `collections/additional/android-developer/skills/android-testing/SKILL.md` (+24 -0) ➕ `collections/additional/android-developer/skills/jetpack-compose-conventions/SKILL.md` (+24 -0) ➕ `collections/additional/android-developer/skills/play-store-readiness/SKILL.md` (+24 -0) 📝 `collections/additional/auditor/agents/compliance-reviewer.md` (+2 -2) 📝 `collections/additional/auditor/agents/security-auditor.md` (+2 -1) 📝 `collections/additional/auditor/skills/data-classification-guide/SKILL.md` (+1 -1) 📝 `collections/additional/auditor/skills/secrets-scan-checklist/SKILL.md` (+1 -1) 📝 `collections/additional/auditor/skills/security-checklist/SKILL.md` (+1 -1) 📝 `collections/additional/auditor/skills/threat-modeling-quickstart/SKILL.md` (+1 -1) 📝 `collections/additional/backend/agents/api-reviewer.md` (+1 -1) 📝 `collections/additional/backend/agents/backend-builder.md` (+2 -2) 📝 `collections/additional/backend/skills/api-design-checklist/SKILL.md` (+1 -1) 📝 `collections/additional/backend/skills/backend-test-patterns/SKILL.md` (+1 -1) 📝 `collections/additional/backend/skills/migration-safety/SKILL.md` (+1 -1) _...and 69 more files_ </details> ### 📄 Description ## Summary Add 4 new starter packs, fix consistency issues, expand target framework support, and tighten compiled adapter output. ### New collections (28 files) - **DevOps/Platform Engineer** (additional): CI/CD pipelines, container builds, observability, incident response - **Java/Spring Developer** (additional): layered architecture, DI discipline, Spring Boot conventions, test pyramid - **iOS Developer** (additional): SwiftUI-first, state management, App Store readiness, offline-first - **Android Developer** (additional): Jetpack Compose-first, state hoisting, Play Store readiness, lifecycle awareness ### Fixes & improvements - **Agent mode fields**: frontend-builder, backend-builder, iac-builder changed from `primary` to `subagent` - **Vibecoder opencode.json**: added recommending claude-sonnet-4 - **Target compatibility**: expanded to all 12 registered adapters across 81 artifact files - **Auditor gap**: security-auditor now produces clean-pass notes; compliance-reviewer handles them explicitly - **Adapter output tightening**: opencode and claude-code adapters now emit only the first paragraph of each rule in compiled AGENTS.md/CLAUDE.md ### Verification - `pytest`: 200 passed - `ruff`: all clean ## Type of change - [x] feat (new feature) - [x] refactor (adapter output tightening) ## Checklist - [x] Self-review completed - [x] No new warnings - [x] Tests pass - [x] Documentation updated (seed_collections.py) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
zaph0d 2026-08-13 19:11:27 +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#86
No description provided.