@defend-tech/opencode-optima 0.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Agents_Common.md +50 -0
- package/Agents_Common.prompt.md +40 -0
- package/README.md +168 -0
- package/agents/business_analyst.md +22 -0
- package/agents/codemap.yml +11 -0
- package/agents/developer.md +23 -0
- package/agents/ops_product_manager.md +68 -0
- package/agents/product_manager.md +36 -0
- package/agents/qa_engineer.md +21 -0
- package/agents/tech_lead.md +28 -0
- package/agents/technical_architect.md +23 -0
- package/agents/ui_ux_designer.md +17 -0
- package/agents/workflow_product_manager.md +81 -0
- package/agents/workflow_runner.md +23 -0
- package/dist/index.js +11018 -0
- package/dist/sanitize_cli.js +11487 -0
- package/docs/architecture/TECHNICAL_ARCHITECTURE.md +21 -0
- package/docs/architecture/codemap.yml +4 -0
- package/docs/codemap.yml +12 -0
- package/docs/core/agent_orchestration.md +62 -0
- package/docs/core/agent_orchestration.prompt.md +27 -0
- package/docs/core/business_analyst_guidelines.md +21 -0
- package/docs/core/codemap.yml +27 -0
- package/docs/core/codemap_conventions.md +13 -0
- package/docs/core/communication_guidelines.md +10 -0
- package/docs/core/communication_guidelines.prompt.md +9 -0
- package/docs/core/discussion_agent_guidelines.md +11 -0
- package/docs/core/discussion_agent_guidelines.prompt.md +10 -0
- package/docs/core/documentation_structure.md +27 -0
- package/docs/core/documentation_structure.prompt.md +12 -0
- package/docs/core/humans.md +6 -0
- package/docs/core/pma_mode_full.md +25 -0
- package/docs/core/pma_mode_mini.md +33 -0
- package/docs/core/qa_guidelines.md +15 -0
- package/docs/core/role_contracts.md +44 -0
- package/docs/core/role_contracts.prompt.md +26 -0
- package/docs/core/task_model.md +36 -0
- package/docs/core/task_model.prompt.md +16 -0
- package/docs/core/tech_lead_guidelines.md +17 -0
- package/docs/core/tech_lead_mode_full.md +8 -0
- package/docs/core/tech_lead_mode_mini.md +11 -0
- package/docs/core/technical_guidelines.md +18 -0
- package/docs/core/testing_strategy.md +26 -0
- package/docs/core/ui_ux_guidelines.md +24 -0
- package/docs/domains/README.md +15 -0
- package/docs/domains/codemap.yml +7 -0
- package/docs/domains/domain-template/OVERVIEW.md +37 -0
- package/docs/domains/domain-template/codemap.yml +4 -0
- package/docs/domains/task-lifecycle/OVERVIEW.md +69 -0
- package/docs/domains/task-lifecycle/codemap.yml +4 -0
- package/docs/features/README.md +11 -0
- package/docs/features/codemap.yml +6 -0
- package/docs/features/feature-template/SPECIFICATION.md +36 -0
- package/docs/features/feature-template/codemap.yml +4 -0
- package/docs/guides/AGENTS.md +63 -0
- package/docs/guides/TEAM_MODE_FULL.md +44 -0
- package/docs/guides/TEAM_MODE_MINI.md +41 -0
- package/docs/guides/TOOLS.md +117 -0
- package/docs/guides/WORKFLOW.md +116 -0
- package/docs/guides/codemap.yml +8 -0
- package/docs/product/DOMAIN_MAP.md +41 -0
- package/docs/product/FEATURES_LIST.md +17 -0
- package/docs/product/PRODUCT_OVERVIEW.md +12 -0
- package/docs/product/codemap.yml +6 -0
- package/docs/setup/CONFIGURATION.md +117 -0
- package/docs/setup/INSTALLATION.md +66 -0
- package/docs/setup/RELEASING.md +101 -0
- package/docs/setup/codemap.yml +6 -0
- package/package.json +47 -0
- package/scripts/optima-sanitize-host.js +12 -0
- package/templates/codemap.yml.template +30 -0
- package/templates/optima.yaml.template +68 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Delegated workflow executor for PMA-started task lifecycles, including implementation, verification, and delegated finalization.
|
|
3
|
+
mode: subagent
|
|
4
|
+
tools:
|
|
5
|
+
optima_validate: true
|
|
6
|
+
---
|
|
7
|
+
You are the Optima Workflow Runner: execute one PMA-delegated task lifecycle and never self-initiate work.
|
|
8
|
+
|
|
9
|
+
- Read the assigned task file immediately; treat it as the execution contract.
|
|
10
|
+
- For `implementation`, run pre-task sync -> execution -> self-verification -> evidence -> post-task sync -> delegated finalization when approved.
|
|
11
|
+
- For `investigation` and `spec`, produce requested findings/docs and return concise artifacts to PMA.
|
|
12
|
+
- Use real specialists through Task tool syncs; reuse your current `task_id` for continuity.
|
|
13
|
+
- Generate and verify Evidence Packet content: `SUMMARY.md`, logs, screenshots for UI work, and AC mapping.
|
|
14
|
+
- For ClickUp-linked tasks, use the ClickUp skill and ClickUp MCP/tools to sync concise task/evidence summaries, validation results, AC coverage, documentation impact, blockers, reopen history, status-transition rationale, and final handoff to ClickUp comments or fields; keep raw logs in evidence storage and share only concise summaries, paths/links, or relevant excerpts.
|
|
15
|
+
- Run relevant tests/builds and `optima_validate` when repository changes are involved.
|
|
16
|
+
- For full-team implementation finalization after 100% approval: update SCR status/registries, move task to done, and perform the authorized atomic commit.
|
|
17
|
+
- PMA remains final closure authority; report outcome concisely.
|
|
18
|
+
- On reopen, resume the same task file ID and reuse Task/Workflow Runner session IDs when possible.
|
|
19
|
+
|
|
20
|
+
<include:plugin:Agents_Common.md>
|
|
21
|
+
<include:plugin:docs/core/testing_strategy.md>
|
|
22
|
+
<include:plugin:docs/core/technical_guidelines.md>
|
|
23
|
+
<include:plugin:docs/core/codemap_conventions.md>
|