mirror of
https://github.com/ksyasuda/SubMiner.git
synced 2026-05-13 08:12:54 -07:00
f0a11c2c99
- Delete Backlog.md and all backlog/ task files - Remove Backlog.md MCP workflow instructions from AGENTS.md - Drop "backlog history" from change-verification shim compatibility note
41 lines
1.5 KiB
Markdown
41 lines
1.5 KiB
Markdown
<!-- read_when: migrating or using the repo-local SubMiner workflow plugin -->
|
|
|
|
# SubMiner Workflow Plugin
|
|
|
|
Status: active
|
|
Last verified: 2026-03-26
|
|
Owner: Kyle Yasuda
|
|
Read when: using or updating the repo-local plugin that owns SubMiner agent workflow skills
|
|
|
|
This plugin is the canonical source of truth for the SubMiner agent workflow packaging.
|
|
|
|
## Contents
|
|
|
|
- `skills/subminer-scrum-master/`
|
|
- intake, planning, dispatch, and handoff workflow
|
|
- `skills/subminer-change-verification/`
|
|
- cheap-first verification workflow plus helper scripts
|
|
|
|
## Compatibility
|
|
|
|
- `.agents/skills/subminer-scrum-master/` is a compatibility shim that redirects to the plugin-owned skill.
|
|
- `.agents/skills/subminer-change-verification/` is a compatibility shim.
|
|
- `.agents/skills/subminer-change-verification/scripts/*.sh` remain as wrapper entrypoints so existing docs and shell history keep working.
|
|
|
|
## Verification
|
|
|
|
For plugin/doc/shim changes, prefer:
|
|
|
|
```bash
|
|
bun run test:docs:kb
|
|
bash plugins/subminer-workflow/skills/subminer-change-verification/scripts/verify_subminer_change.sh --lane docs --lane core \
|
|
plugins/subminer-workflow \
|
|
.agents/skills/subminer-scrum-master/SKILL.md \
|
|
.agents/skills/subminer-change-verification/SKILL.md \
|
|
.agents/skills/subminer-change-verification/scripts/classify_subminer_diff.sh \
|
|
.agents/skills/subminer-change-verification/scripts/verify_subminer_change.sh \
|
|
.agents/plugins/marketplace.json \
|
|
docs/workflow/README.md \
|
|
docs/workflow/agent-plugins.md
|
|
```
|