Agent / Plugin Scan — Wave 1
Highest-leverage patterns already present
| Artifact | Type | Why it matters for issue #195 | Evidence |
|---|---|---|---|
context-engineering | plugin | Gives the kit a clean context-map entrypoint before edits or synthesis. | /workspace/repos/miadisabelle/mia-awesome-copilot/plugins/context-engineering/README.md:1-27; /workspace/repos/miadisabelle/mia-awesome-copilot/plugins/context-engineering/.github/plugin/plugin.json:1-24 |
structured-autonomy | plugin | Encodes a plan / generate / implement split that matches Miadi's orchestrator-vs-executor discipline. | /workspace/repos/miadisabelle/mia-awesome-copilot/plugins/structured-autonomy/README.md:1-20; /workspace/repos/miadisabelle/mia-awesome-copilot/plugins/structured-autonomy/.github/plugin/plugin.json:1-15 |
doublecheck | plugin | Supplies a reusable verification layer for promoted wiki claims and literature findings. | /workspace/repos/miadisabelle/mia-awesome-copilot/plugins/doublecheck/README.md:1-37 |
context-architect | agent | Strong model for context-first multi-file planning. | /workspace/repos/miadisabelle/mia-awesome-copilot/agents/context-architect.agent.md:7-26 |
repo-architect | agent | Strong model for scaffolding agent/plugin/skill structures and hybrid CLI/editor environments. | /workspace/repos/miadisabelle/mia-awesome-copilot/agents/repo-architect.agent.md:8-20,31-51,64-96 |
task-researcher | agent | Closest existing "wiki maintainer" behavior: writes evidence-backed markdown research, removes duplicates, prefers one chosen approach. | /workspace/repos/miadisabelle/mia-awesome-copilot/agents/task-researcher.agent.md:11-37,39-52 |
create-llms + update-markdown-file-index + create-agentsmd | skills | Ready-made primitives for bootstrapping llms.txt, indexes, and agent-facing schema files. | /workspace/repos/miadisabelle/mia-awesome-copilot/skills/create-llms/SKILL.md:6-47,49-80; /workspace/repos/miadisabelle/mia-awesome-copilot/skills/update-markdown-file-index/SKILL.md:6-18,53-77; /workspace/repos/miadisabelle/mia-awesome-copilot/skills/create-agentsmd/SKILL.md:6-24,195-249 |
remember + memory-merger | skills | Useful model for turning session lessons into durable, domain-scoped markdown memory that later gets merged into stable instructions. | /workspace/repos/miadisabelle/mia-awesome-copilot/skills/remember/SKILL.md:21-30,69-107; /workspace/repos/miadisabelle/mia-awesome-copilot/skills/memory-merger/SKILL.md:37-90 |
What this repo teaches the Miadi-native kit
-
Plugins are the right packaging boundary for reusable capability.
This repo packages agents/skills declaratively and validates them via manifest/schema discipline (/workspace/repos/miadisabelle/mia-awesome-copilot/AGENTS.md:101-108,138-158,160-179). -
Research, planning, and implementation should not be collapsed.
task-researcher,context-architect, andstructured-autonomyall keep discovery and execution separate. That matches Miadi's PDE + subagent orchestration posture and should be copied into the kit. -
Verification needs its own reusable surface.
doublecheckproves that verification can be packaged as a first-class plugin rather than left as an ad hoc habit. -
Markdown maintenance is a capability, not just documentation.
create-llms,update-markdown-file-index,create-agentsmd,remember, andmemory-mergershow that repo-shaping markdown work already fits the plugin/skill ecosystem cleanly.
Boundary signal: kit vs suite
Best fit for the Miadi-native Copilot orchestration kit
- context map / dependency trace
- plan / generate / implement orchestration wrappers
- wiki-page drafting and merge review
- repo-local memory capture and promotion
- claim verification before page promotion
Best fit for the broader Miadi Orchestration Suite
- shared schemas and manifest validation
- retrieval/indexing services
- audit/session logging
- governance review and policy enforcement
- cross-runtime plugin/subagent distribution
Immediate borrow list
context-engineeringshape for the kit's "read first, map context" action.structured-autonomysplit for orchestrator vs executor responsibilities.doublecheckposture for wave-2 literature and wiki-promotion verification.create-llms/update-markdown-file-index/create-agentsmdprimitives for wiki scaffolding.remember/memory-mergerpattern for durable lessons and periodic consolidation.