@rosetears/aili-pi 0.1.0
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/LICENSE +21 -0
- package/README.md +109 -0
- package/THIRD_PARTY_NOTICES.md +64 -0
- package/extensions/index.ts +6 -0
- package/install.sh +5 -0
- package/manifests/adapter-evidence.json +45 -0
- package/manifests/capabilities.json +124 -0
- package/manifests/live-verification.json +26 -0
- package/manifests/provenance.json +71 -0
- package/manifests/roles.json +474 -0
- package/manifests/sbom.json +7797 -0
- package/manifests/skill-compatibility.json +8100 -0
- package/manifests/subagent-provenance.json +37 -0
- package/package.json +91 -0
- package/prompts/build.md +8 -0
- package/prompts/define.md +8 -0
- package/prompts/ideate.md +8 -0
- package/prompts/local-review.md +8 -0
- package/prompts/ship.md +8 -0
- package/roles/agent-evaluator.md +47 -0
- package/roles/ai-regression-scout.md +47 -0
- package/roles/browser-qa-runner.md +47 -0
- package/roles/code-reviewer.md +47 -0
- package/roles/code-scout.md +47 -0
- package/roles/convergence-reviewer.md +55 -0
- package/roles/doc-researcher.md +47 -0
- package/roles/e2e-artifact-runner.md +47 -0
- package/roles/implementer.md +47 -0
- package/roles/opensource-sanitizer.md +47 -0
- package/roles/plan-auditor.md +47 -0
- package/roles/pr-test-analyzer.md +47 -0
- package/roles/security-auditor.md +47 -0
- package/roles/silent-failure-reviewer.md +47 -0
- package/roles/spec-miner.md +47 -0
- package/roles/test-coverage-reviewer.md +47 -0
- package/roles/test-engineer.md +48 -0
- package/roles/web-performance-auditor.md +47 -0
- package/roles/web-researcher.md +47 -0
- package/scripts/apply-adapter-evidence.ts +73 -0
- package/scripts/bootstrap.sh +180 -0
- package/scripts/generate-provenance.ts +143 -0
- package/scripts/local-package-e2e.ts +51 -0
- package/scripts/sync-roles.ts +213 -0
- package/scripts/sync-skills.ts +356 -0
- package/scripts/validate-runtime.ts +11 -0
- package/skills/academic-paper-review/SKILL.md +81 -0
- package/skills/agents-md-initialization/SKILL.md +121 -0
- package/skills/agents-md-initialization/references/agents-template.md +83 -0
- package/skills/agents-md-initialization/references/agents_md.py +215 -0
- package/skills/ai-regression-scout/SKILL.md +24 -0
- package/skills/aili-delivery-flow/SKILL.md +125 -0
- package/skills/aili-delivery-flow/references/artifact-contracts.md +138 -0
- package/skills/aili-delivery-flow/references/backend-routing.md +40 -0
- package/skills/aili-delivery-flow/references/build-execution-loop.md +113 -0
- package/skills/aili-delivery-flow/references/build-goal-mode.md +3 -0
- package/skills/aili-delivery-flow/references/direct-vs-delegated-work.md +38 -0
- package/skills/aili-delivery-flow/references/implementation-packages.md +54 -0
- package/skills/aili-delivery-flow/references/lifecycle.md +127 -0
- package/skills/aili-delivery-flow/references/protocols/acceptance-test-plan.md +18 -0
- package/skills/aili-delivery-flow/references/protocols/alignment-questionnaire.md +10 -0
- package/skills/aili-delivery-flow/references/protocols/closeout-report.md +101 -0
- package/skills/aili-delivery-flow/references/protocols/compact-evidence-pack.md +46 -0
- package/skills/aili-delivery-flow/references/protocols/idea-brief.md +10 -0
- package/skills/aili-delivery-flow/references/protocols/implementation-package.md +53 -0
- package/skills/aili-delivery-flow/references/protocols/research-evidence-pack.md +19 -0
- package/skills/aili-delivery-flow/references/protocols/review-report.md +7 -0
- package/skills/aili-delivery-flow/references/protocols/spec-draft.md +12 -0
- package/skills/aili-delivery-flow/references/protocols/subagent-result.md +60 -0
- package/skills/aili-delivery-flow/references/protocols/subagent-task-packet.md +29 -0
- package/skills/aili-delivery-flow/references/protocols/worktree-context.md +109 -0
- package/skills/aili-delivery-flow/references/questionnaire-policy.md +62 -0
- package/skills/aili-delivery-flow/references/review-repair-loop.md +16 -0
- package/skills/aili-delivery-flow/references/test-document-policy.md +35 -0
- package/skills/android-native-dev/SKILL.md +722 -0
- package/skills/android-native-dev/references/accessibility.md +209 -0
- package/skills/android-native-dev/references/adaptive-screens.md +231 -0
- package/skills/android-native-dev/references/design-style-guide.md +365 -0
- package/skills/android-native-dev/references/functional-requirements.md +229 -0
- package/skills/android-native-dev/references/motion-system.md +203 -0
- package/skills/android-native-dev/references/performance-stability.md +223 -0
- package/skills/android-native-dev/references/privacy-security.md +244 -0
- package/skills/android-native-dev/references/testing.md +554 -0
- package/skills/android-native-dev/references/visual-design.md +246 -0
- package/skills/api-and-interface-design/SKILL.md +318 -0
- package/skills/browser-qa/SKILL.md +32 -0
- package/skills/browser-testing-with-devtools/SKILL.md +323 -0
- package/skills/build-failure-repair/SKILL.md +49 -0
- package/skills/chart-visualization/SKILL.md +73 -0
- package/skills/ci-cd-and-automation/SKILL.md +353 -0
- package/skills/code-review-and-quality/SKILL.md +375 -0
- package/skills/code-review-quality-gates/SKILL.md +132 -0
- package/skills/code-simplification/SKILL.md +371 -0
- package/skills/comment-accuracy-review/SKILL.md +37 -0
- package/skills/consulting-analysis/SKILL.md +69 -0
- package/skills/context-engineering/SKILL.md +375 -0
- package/skills/coverage-review/SKILL.md +24 -0
- package/skills/data-analysis/SKILL.md +74 -0
- package/skills/deprecation-and-migration/SKILL.md +222 -0
- package/skills/documentation-and-adrs/SKILL.md +330 -0
- package/skills/e2e-artifact-handling/SKILL.md +30 -0
- package/skills/evidence-scoped-retrospective/SKILL.md +156 -0
- package/skills/explain-by-allegory/SKILL.md +99 -0
- package/skills/flutter-dev/SKILL.md +162 -0
- package/skills/flutter-dev/references/animations.md +497 -0
- package/skills/flutter-dev/references/bloc-state.md +281 -0
- package/skills/flutter-dev/references/forms.md +656 -0
- package/skills/flutter-dev/references/gorouter-navigation.md +257 -0
- package/skills/flutter-dev/references/localization.md +510 -0
- package/skills/flutter-dev/references/networking.md +566 -0
- package/skills/flutter-dev/references/performance.md +305 -0
- package/skills/flutter-dev/references/platform-specific.md +417 -0
- package/skills/flutter-dev/references/project-structure.md +273 -0
- package/skills/flutter-dev/references/riverpod-state.md +232 -0
- package/skills/flutter-dev/references/testing.md +364 -0
- package/skills/flutter-dev/references/widget-patterns.md +233 -0
- package/skills/frontend-dev/SKILL.md +468 -0
- package/skills/frontend-dev/canvas-fonts/ArsenalSC-OFL.txt +93 -0
- package/skills/frontend-dev/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/BigShoulders-Bold.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/BigShoulders-OFL.txt +93 -0
- package/skills/frontend-dev/canvas-fonts/BigShoulders-Regular.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/Boldonse-OFL.txt +93 -0
- package/skills/frontend-dev/canvas-fonts/Boldonse-Regular.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/BricolageGrotesque-OFL.txt +93 -0
- package/skills/frontend-dev/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/CrimsonPro-OFL.txt +93 -0
- package/skills/frontend-dev/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/DMMono-OFL.txt +93 -0
- package/skills/frontend-dev/canvas-fonts/DMMono-Regular.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/EricaOne-OFL.txt +94 -0
- package/skills/frontend-dev/canvas-fonts/EricaOne-Regular.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/GeistMono-Bold.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/GeistMono-OFL.txt +93 -0
- package/skills/frontend-dev/canvas-fonts/GeistMono-Regular.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/Gloock-OFL.txt +93 -0
- package/skills/frontend-dev/canvas-fonts/Gloock-Regular.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/IBMPlexMono-OFL.txt +93 -0
- package/skills/frontend-dev/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/InstrumentSans-OFL.txt +93 -0
- package/skills/frontend-dev/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/Italiana-OFL.txt +93 -0
- package/skills/frontend-dev/canvas-fonts/Italiana-Regular.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/JetBrainsMono-OFL.txt +93 -0
- package/skills/frontend-dev/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/Jura-Light.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/Jura-Medium.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/Jura-OFL.txt +93 -0
- package/skills/frontend-dev/canvas-fonts/LibreBaskerville-OFL.txt +93 -0
- package/skills/frontend-dev/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/Lora-Bold.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/Lora-BoldItalic.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/Lora-Italic.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/Lora-OFL.txt +93 -0
- package/skills/frontend-dev/canvas-fonts/Lora-Regular.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/NationalPark-Bold.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/NationalPark-OFL.txt +93 -0
- package/skills/frontend-dev/canvas-fonts/NationalPark-Regular.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/NothingYouCouldDo-OFL.txt +93 -0
- package/skills/frontend-dev/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/Outfit-Bold.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/Outfit-OFL.txt +93 -0
- package/skills/frontend-dev/canvas-fonts/Outfit-Regular.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/PixelifySans-Medium.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/PixelifySans-OFL.txt +93 -0
- package/skills/frontend-dev/canvas-fonts/PoiretOne-OFL.txt +93 -0
- package/skills/frontend-dev/canvas-fonts/PoiretOne-Regular.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/RedHatMono-Bold.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/RedHatMono-OFL.txt +93 -0
- package/skills/frontend-dev/canvas-fonts/RedHatMono-Regular.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/Silkscreen-OFL.txt +93 -0
- package/skills/frontend-dev/canvas-fonts/Silkscreen-Regular.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/SmoochSans-Medium.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/SmoochSans-OFL.txt +93 -0
- package/skills/frontend-dev/canvas-fonts/Tektur-Medium.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/Tektur-OFL.txt +93 -0
- package/skills/frontend-dev/canvas-fonts/Tektur-Regular.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/WorkSans-Bold.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/WorkSans-Italic.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/WorkSans-OFL.txt +93 -0
- package/skills/frontend-dev/canvas-fonts/WorkSans-Regular.ttf +0 -0
- package/skills/frontend-dev/canvas-fonts/YoungSerif-OFL.txt +93 -0
- package/skills/frontend-dev/canvas-fonts/YoungSerif-Regular.ttf +0 -0
- package/skills/frontend-dev/references/asset-prompt-guide.md +43 -0
- package/skills/frontend-dev/references/env-setup.md +33 -0
- package/skills/frontend-dev/references/minimax-cli-reference.md +133 -0
- package/skills/frontend-dev/references/minimax-image-guide.md +65 -0
- package/skills/frontend-dev/references/minimax-music-guide.md +216 -0
- package/skills/frontend-dev/references/minimax-tts-guide.md +78 -0
- package/skills/frontend-dev/references/minimax-video-guide.md +82 -0
- package/skills/frontend-dev/references/minimax-voice-catalog.md +685 -0
- package/skills/frontend-dev/references/motion-recipes.md +407 -0
- package/skills/frontend-dev/references/troubleshooting.md +85 -0
- package/skills/frontend-dev/scripts/minimax_image.py +137 -0
- package/skills/frontend-dev/scripts/minimax_music.py +157 -0
- package/skills/frontend-dev/scripts/minimax_tts.py +127 -0
- package/skills/frontend-dev/scripts/minimax_video.py +187 -0
- package/skills/frontend-dev/templates/generator_template.js +223 -0
- package/skills/frontend-dev/templates/viewer.html +599 -0
- package/skills/frontend-ui-engineering/SKILL.md +367 -0
- package/skills/fullstack-dev/SKILL.md +819 -0
- package/skills/fullstack-dev/references/api-design.md +444 -0
- package/skills/fullstack-dev/references/auth-flow.md +165 -0
- package/skills/fullstack-dev/references/db-schema.md +706 -0
- package/skills/fullstack-dev/references/django-best-practices.md +466 -0
- package/skills/fullstack-dev/references/environment-management.md +78 -0
- package/skills/fullstack-dev/references/release-checklist.md +278 -0
- package/skills/fullstack-dev/references/technology-selection.md +254 -0
- package/skills/fullstack-dev/references/testing-strategy.md +404 -0
- package/skills/git-workflow-and-versioning/SKILL.md +446 -0
- package/skills/github-evidence-triage/SKILL.md +115 -0
- package/skills/harness-evolution/SKILL.md +59 -0
- package/skills/harness-evolution/references/activation-matrix.md +13 -0
- package/skills/harness-evolution/references/approval-policy.md +20 -0
- package/skills/harness-evolution/references/change-report-template.md +33 -0
- package/skills/harness-evolution/references/component-taxonomy.md +19 -0
- package/skills/harness-evolution/references/verdict-policy.md +13 -0
- package/skills/harness-issue-triage/SKILL.md +72 -0
- package/skills/harness-issue-triage/references/component-diagnosis.md +25 -0
- package/skills/harness-issue-triage/references/triage-report-template.md +34 -0
- package/skills/harness-optimization-audit/SKILL.md +125 -0
- package/skills/idea-refine/SKILL.md +191 -0
- package/skills/idea-refine/references/upstream/addyosmani-agent-skills/6bcfeb9dae52b11eaad23511acc165109746dbc3/LICENSE +21 -0
- package/skills/idea-refine/references/upstream/addyosmani-agent-skills/6bcfeb9dae52b11eaad23511acc165109746dbc3/NOTICE.md +9 -0
- package/skills/idea-refine/references/upstream/addyosmani-agent-skills/6bcfeb9dae52b11eaad23511acc165109746dbc3/idea-refine/SKILL.upstream.md +178 -0
- package/skills/idea-refine/references/upstream/addyosmani-agent-skills/6bcfeb9dae52b11eaad23511acc165109746dbc3/idea-refine/examples.md +238 -0
- package/skills/idea-refine/references/upstream/addyosmani-agent-skills/6bcfeb9dae52b11eaad23511acc165109746dbc3/idea-refine/frameworks.md +99 -0
- package/skills/idea-refine/references/upstream/addyosmani-agent-skills/6bcfeb9dae52b11eaad23511acc165109746dbc3/idea-refine/refinement-criteria.md +113 -0
- package/skills/idea-refine/references/upstream/addyosmani-agent-skills/6bcfeb9dae52b11eaad23511acc165109746dbc3/idea-refine/scripts/idea-refine.upstream.sh +15 -0
- package/skills/incremental-implementation/SKILL.md +252 -0
- package/skills/ios-application-dev/SKILL.md +212 -0
- package/skills/ios-application-dev/references/accessibility.md +259 -0
- package/skills/ios-application-dev/references/graphics-animation.md +350 -0
- package/skills/ios-application-dev/references/layout-system.md +199 -0
- package/skills/ios-application-dev/references/metal-shader.md +178 -0
- package/skills/ios-application-dev/references/navigation-patterns.md +175 -0
- package/skills/ios-application-dev/references/swift-coding-standards.md +757 -0
- package/skills/ios-application-dev/references/swiftui-design-guidelines.md +1167 -0
- package/skills/ios-application-dev/references/system-integration.md +401 -0
- package/skills/ios-application-dev/references/uikit-components.md +297 -0
- package/skills/local-review-gate/SKILL.md +207 -0
- package/skills/local-review-gate/references/addyosmani-code-review-rubric.md +33 -0
- package/skills/local-review-gate/references/codex-github-compatibility.md +26 -0
- package/skills/local-review-gate/references/ecc-code-review-adaptation.md +40 -0
- package/skills/local-review-gate/references/graphify-local-review.md +33 -0
- package/skills/local-review-gate/references/orchestration-adaptation.md +51 -0
- package/skills/local-review-gate/references/review-repair-lane-adaptation.md +46 -0
- package/skills/local-review-gate/references/upstream-provenance.md +61 -0
- package/skills/mature-project-pattern-research/SKILL.md +155 -0
- package/skills/mature-project-pattern-research/references/research-rubric.md +45 -0
- package/skills/minimax-docx/LICENSE +21 -0
- package/skills/minimax-docx/SKILL.md +273 -0
- package/skills/minimax-docx/assets/styles/academic_styles.xml +250 -0
- package/skills/minimax-docx/assets/styles/corporate_styles.xml +284 -0
- package/skills/minimax-docx/assets/styles/default_styles.xml +449 -0
- package/skills/minimax-docx/assets/xsd/aesthetic-rules.xsd +470 -0
- package/skills/minimax-docx/assets/xsd/business-rules.xsd +130 -0
- package/skills/minimax-docx/assets/xsd/common-types.xsd +159 -0
- package/skills/minimax-docx/assets/xsd/wml-subset.xsd +589 -0
- package/skills/minimax-docx/references/cjk_typography.md +357 -0
- package/skills/minimax-docx/references/cjk_university_template_guide.md +184 -0
- package/skills/minimax-docx/references/comments_guide.md +191 -0
- package/skills/minimax-docx/references/design_good_bad_examples.md +829 -0
- package/skills/minimax-docx/references/design_principles.md +819 -0
- package/skills/minimax-docx/references/openxml_element_order.md +308 -0
- package/skills/minimax-docx/references/openxml_encyclopedia_part1.md +4061 -0
- package/skills/minimax-docx/references/openxml_encyclopedia_part2.md +2820 -0
- package/skills/minimax-docx/references/openxml_encyclopedia_part3.md +3381 -0
- package/skills/minimax-docx/references/openxml_namespaces.md +82 -0
- package/skills/minimax-docx/references/openxml_units.md +72 -0
- package/skills/minimax-docx/references/scenario_a_create.md +284 -0
- package/skills/minimax-docx/references/scenario_b_edit_content.md +295 -0
- package/skills/minimax-docx/references/scenario_c_apply_template.md +456 -0
- package/skills/minimax-docx/references/track_changes_guide.md +200 -0
- package/skills/minimax-docx/references/troubleshooting.md +506 -0
- package/skills/minimax-docx/references/typography_guide.md +294 -0
- package/skills/minimax-docx/references/xsd_validation_guide.md +158 -0
- package/skills/minimax-docx/scripts/doc_to_docx.sh +40 -0
- package/skills/minimax-docx/scripts/docx_preview.sh +37 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/MiniMaxAIDocx.Cli.csproj +19 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/Program.cs +18 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/AnalyzeCommand.cs +147 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/ApplyTemplateCommand.cs +322 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/CreateCommand.cs +324 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/DiffCommand.cs +155 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/EditContentCommand.cs +487 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/FixOrderCommand.cs +108 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/MergeRunsCommand.cs +122 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/ValidateCommand.cs +107 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/MiniMaxAIDocx.Core.csproj +15 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/CommentSynchronizer.cs +169 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/ElementOrder.cs +80 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/NamespaceConstants.cs +42 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/RunMerger.cs +81 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/StyleAnalyzer.cs +81 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/TrackChangesHelper.cs +99 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/UnitConverter.cs +23 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/AestheticRecipeSamples.cs +1832 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/AestheticRecipeSamples_Batch1.cs +910 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/AestheticRecipeSamples_Batch2.cs +999 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/AestheticRecipeSamples_Batch3.cs +1048 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/AestheticRecipeSamples_Batch4.cs +1038 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/CharacterFormattingSamples.cs +1020 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/DocumentCreationSamples.cs +1121 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/FieldAndTocSamples.cs +624 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/FootnoteAndCommentSamples.cs +675 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/HeaderFooterSamples.cs +838 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/ImageSamples.cs +917 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/ListAndNumberingSamples.cs +826 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/ParagraphFormattingSamples.cs +1199 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/StyleSystemSamples.cs +1487 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/TableSamples.cs +1163 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/TrackChangesSamples.cs +595 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Typography/CjkHelper.cs +39 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Typography/FontDefaults.cs +24 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Typography/PageSizes.cs +20 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Validation/BusinessRuleValidator.cs +224 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Validation/GateCheckValidator.cs +148 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Validation/ValidationResult.cs +23 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Validation/XsdValidator.cs +69 -0
- package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.slnx +4 -0
- package/skills/minimax-docx/scripts/env_check.sh +196 -0
- package/skills/minimax-docx/scripts/setup.ps1 +274 -0
- package/skills/minimax-docx/scripts/setup.sh +504 -0
- package/skills/minimax-pdf/README.md +222 -0
- package/skills/minimax-pdf/SKILL.md +218 -0
- package/skills/minimax-pdf/design/design.md +381 -0
- package/skills/minimax-pdf/scripts/cover.py +1579 -0
- package/skills/minimax-pdf/scripts/fill_inspect.py +200 -0
- package/skills/minimax-pdf/scripts/fill_write.py +242 -0
- package/skills/minimax-pdf/scripts/make.sh +491 -0
- package/skills/minimax-pdf/scripts/merge.py +112 -0
- package/skills/minimax-pdf/scripts/palette.py +521 -0
- package/skills/minimax-pdf/scripts/reformat_parse.py +374 -0
- package/skills/minimax-pdf/scripts/render_body.py +1052 -0
- package/skills/minimax-pdf/scripts/render_cover.js +111 -0
- package/skills/minimax-xlsx/SKILL.md +156 -0
- package/skills/minimax-xlsx/references/create.md +691 -0
- package/skills/minimax-xlsx/references/edit.md +684 -0
- package/skills/minimax-xlsx/references/fix.md +37 -0
- package/skills/minimax-xlsx/references/format.md +768 -0
- package/skills/minimax-xlsx/references/ooxml-cheatsheet.md +231 -0
- package/skills/minimax-xlsx/references/read-analyze.md +97 -0
- package/skills/minimax-xlsx/references/validate.md +772 -0
- package/skills/minimax-xlsx/scripts/formula_check.py +422 -0
- package/skills/minimax-xlsx/scripts/libreoffice_recalc.py +248 -0
- package/skills/minimax-xlsx/scripts/shared_strings_builder.py +163 -0
- package/skills/minimax-xlsx/scripts/style_audit.py +575 -0
- package/skills/minimax-xlsx/scripts/xlsx_add_column.py +395 -0
- package/skills/minimax-xlsx/scripts/xlsx_insert_row.py +274 -0
- package/skills/minimax-xlsx/scripts/xlsx_pack.py +87 -0
- package/skills/minimax-xlsx/scripts/xlsx_reader.py +362 -0
- package/skills/minimax-xlsx/scripts/xlsx_shift_rows.py +396 -0
- package/skills/minimax-xlsx/scripts/xlsx_unpack.py +130 -0
- package/skills/minimax-xlsx/templates/minimal_xlsx/[Content_Types].xml +9 -0
- package/skills/minimax-xlsx/templates/minimal_xlsx/_rels/.rels +6 -0
- package/skills/minimax-xlsx/templates/minimal_xlsx/xl/_rels/workbook.xml.rels +19 -0
- package/skills/minimax-xlsx/templates/minimal_xlsx/xl/sharedStrings.xml +33 -0
- package/skills/minimax-xlsx/templates/minimal_xlsx/xl/styles.xml +160 -0
- package/skills/minimax-xlsx/templates/minimal_xlsx/xl/workbook.xml +30 -0
- package/skills/minimax-xlsx/templates/minimal_xlsx/xl/worksheets/sheet1.xml +70 -0
- package/skills/newsletter-generation/SKILL.md +71 -0
- package/skills/oss-release-readiness/SKILL.md +47 -0
- package/skills/parallel-subagent-dispatch/SKILL.md +58 -0
- package/skills/performance-optimization/SKILL.md +364 -0
- package/skills/planning-and-task-breakdown/SKILL.md +290 -0
- package/skills/pptx-generator/SKILL.md +275 -0
- package/skills/pptx-generator/references/design-system.md +392 -0
- package/skills/pptx-generator/references/editing.md +162 -0
- package/skills/pptx-generator/references/pitfalls.md +112 -0
- package/skills/pptx-generator/references/pptxgenjs.md +420 -0
- package/skills/pptx-generator/references/slide-types.md +413 -0
- package/skills/pr-test-analysis/SKILL.md +24 -0
- package/skills/react-native-dev/SKILL.md +180 -0
- package/skills/react-native-dev/references/animations.md +254 -0
- package/skills/react-native-dev/references/components.md +124 -0
- package/skills/react-native-dev/references/engineering.md +527 -0
- package/skills/react-native-dev/references/forms.md +300 -0
- package/skills/react-native-dev/references/native-capabilities.md +163 -0
- package/skills/react-native-dev/references/navigation.md +271 -0
- package/skills/react-native-dev/references/networking.md +346 -0
- package/skills/react-native-dev/references/performance.md +215 -0
- package/skills/react-native-dev/references/state-management.md +230 -0
- package/skills/react-native-dev/references/styling.md +117 -0
- package/skills/react-native-dev/references/testing.md +341 -0
- package/skills/requirements-grilling/SKILL.md +447 -0
- package/skills/requirements-grilling/references/ADR-FORMAT.md +46 -0
- package/skills/requirements-grilling/references/CONTEXT-FORMAT.md +41 -0
- package/skills/requirements-grilling/references/INTERVIEW-PACKET-FORMAT.md +62 -0
- package/skills/requirements-grilling/references/MIT-LICENSE-MATT-POCOCK.md +25 -0
- package/skills/requirements-grilling/references/upstream/addyosmani-agent-skills/6bcfeb9dae52b11eaad23511acc165109746dbc3/LICENSE +21 -0
- package/skills/requirements-grilling/references/upstream/addyosmani-agent-skills/6bcfeb9dae52b11eaad23511acc165109746dbc3/NOTICE.md +9 -0
- package/skills/requirements-grilling/references/upstream/addyosmani-agent-skills/6bcfeb9dae52b11eaad23511acc165109746dbc3/interview-me/SKILL.upstream.md +225 -0
- package/skills/requirements-grilling/references/upstream/mattpocock-skills/9603c1cc8118d08bc1b3bf34cf714f62178dea3b/LICENSE +21 -0
- package/skills/requirements-grilling/references/upstream/mattpocock-skills/9603c1cc8118d08bc1b3bf34cf714f62178dea3b/NOTICE.md +12 -0
- package/skills/requirements-grilling/references/upstream/mattpocock-skills/9603c1cc8118d08bc1b3bf34cf714f62178dea3b/batch-grill-me/SKILL.upstream.md +15 -0
- package/skills/requirements-grilling/references/upstream/mattpocock-skills/9603c1cc8118d08bc1b3bf34cf714f62178dea3b/grill-me/SKILL.upstream.md +7 -0
- package/skills/requirements-grilling/references/upstream/mattpocock-skills/9603c1cc8118d08bc1b3bf34cf714f62178dea3b/grilling/SKILL.upstream.md +12 -0
- package/skills/review-pipeline/SKILL.md +38 -0
- package/skills/rose-memory/SKILL.md +210 -0
- package/skills/rose-memory/references/README.md +48 -0
- package/skills/rose-memory/references/memory_cli.py +2384 -0
- package/skills/rose-memory/references/schema.sql +315 -0
- package/skills/security-and-hardening/SKILL.md +369 -0
- package/skills/session-handoff/SKILL.md +88 -0
- package/skills/session-handoff/references/upstream/mattpocock-skills/391a2701dd948f94f56a39f7533f8eea9a859c87/LICENSE +21 -0
- package/skills/session-handoff/references/upstream/mattpocock-skills/391a2701dd948f94f56a39f7533f8eea9a859c87/NOTICE.md +9 -0
- package/skills/session-handoff/references/upstream/mattpocock-skills/391a2701dd948f94f56a39f7533f8eea9a859c87/productivity/handoff/SKILL.upstream.md +16 -0
- package/skills/session-handoff/scripts/session_handoff.py +764 -0
- package/skills/shader-dev/SKILL.md +316 -0
- package/skills/shader-dev/reference/ambient-occlusion.md +382 -0
- package/skills/shader-dev/reference/analytic-ray-tracing.md +651 -0
- package/skills/shader-dev/reference/anti-aliasing.md +71 -0
- package/skills/shader-dev/reference/atmospheric-scattering.md +571 -0
- package/skills/shader-dev/reference/camera-effects.md +80 -0
- package/skills/shader-dev/reference/cellular-automata.md +635 -0
- package/skills/shader-dev/reference/color-palette.md +481 -0
- package/skills/shader-dev/reference/csg-boolean-operations.md +466 -0
- package/skills/shader-dev/reference/domain-repetition.md +436 -0
- package/skills/shader-dev/reference/domain-warping.md +419 -0
- package/skills/shader-dev/reference/fluid-simulation.md +425 -0
- package/skills/shader-dev/reference/fractal-rendering.md +525 -0
- package/skills/shader-dev/reference/lighting-model.md +639 -0
- package/skills/shader-dev/reference/matrix-transform.md +535 -0
- package/skills/shader-dev/reference/multipass-buffer.md +571 -0
- package/skills/shader-dev/reference/normal-estimation.md +418 -0
- package/skills/shader-dev/reference/particle-system.md +589 -0
- package/skills/shader-dev/reference/path-tracing-gi.md +602 -0
- package/skills/shader-dev/reference/polar-uv-manipulation.md +521 -0
- package/skills/shader-dev/reference/post-processing.md +375 -0
- package/skills/shader-dev/reference/procedural-2d-pattern.md +439 -0
- package/skills/shader-dev/reference/procedural-noise.md +551 -0
- package/skills/shader-dev/reference/ray-marching.md +396 -0
- package/skills/shader-dev/reference/sdf-2d.md +724 -0
- package/skills/shader-dev/reference/sdf-3d.md +805 -0
- package/skills/shader-dev/reference/sdf-tricks.md +63 -0
- package/skills/shader-dev/reference/shadow-techniques.md +476 -0
- package/skills/shader-dev/reference/simulation-physics.md +644 -0
- package/skills/shader-dev/reference/sound-synthesis.md +578 -0
- package/skills/shader-dev/reference/terrain-rendering.md +839 -0
- package/skills/shader-dev/reference/texture-mapping-advanced.md +87 -0
- package/skills/shader-dev/reference/texture-sampling.md +553 -0
- package/skills/shader-dev/reference/volumetric-rendering.md +608 -0
- package/skills/shader-dev/reference/voronoi-cellular-noise.md +486 -0
- package/skills/shader-dev/reference/voxel-rendering.md +701 -0
- package/skills/shader-dev/reference/water-ocean.md +445 -0
- package/skills/shader-dev/reference/webgl-pitfalls.md +41 -0
- package/skills/shader-dev/techniques/ambient-occlusion.md +364 -0
- package/skills/shader-dev/techniques/analytic-ray-tracing.md +542 -0
- package/skills/shader-dev/techniques/anti-aliasing.md +124 -0
- package/skills/shader-dev/techniques/atmospheric-scattering.md +522 -0
- package/skills/shader-dev/techniques/camera-effects.md +115 -0
- package/skills/shader-dev/techniques/cellular-automata.md +531 -0
- package/skills/shader-dev/techniques/color-palette.md +380 -0
- package/skills/shader-dev/techniques/csg-boolean-operations.md +491 -0
- package/skills/shader-dev/techniques/domain-repetition.md +333 -0
- package/skills/shader-dev/techniques/domain-warping.md +414 -0
- package/skills/shader-dev/techniques/fluid-simulation.md +1175 -0
- package/skills/shader-dev/techniques/fractal-rendering.md +436 -0
- package/skills/shader-dev/techniques/lighting-model.md +527 -0
- package/skills/shader-dev/techniques/matrix-transform.md +455 -0
- package/skills/shader-dev/techniques/multipass-buffer.md +922 -0
- package/skills/shader-dev/techniques/normal-estimation.md +318 -0
- package/skills/shader-dev/techniques/particle-system.md +1203 -0
- package/skills/shader-dev/techniques/path-tracing-gi.md +623 -0
- package/skills/shader-dev/techniques/polar-uv-manipulation.md +373 -0
- package/skills/shader-dev/techniques/post-processing.md +788 -0
- package/skills/shader-dev/techniques/procedural-2d-pattern.md +346 -0
- package/skills/shader-dev/techniques/procedural-noise.md +554 -0
- package/skills/shader-dev/techniques/ray-marching.md +467 -0
- package/skills/shader-dev/techniques/sdf-2d.md +631 -0
- package/skills/shader-dev/techniques/sdf-3d.md +589 -0
- package/skills/shader-dev/techniques/sdf-tricks.md +100 -0
- package/skills/shader-dev/techniques/shadow-techniques.md +776 -0
- package/skills/shader-dev/techniques/simulation-physics.md +1542 -0
- package/skills/shader-dev/techniques/sound-synthesis.md +490 -0
- package/skills/shader-dev/techniques/terrain-rendering.md +408 -0
- package/skills/shader-dev/techniques/texture-mapping-advanced.md +121 -0
- package/skills/shader-dev/techniques/texture-sampling.md +382 -0
- package/skills/shader-dev/techniques/volumetric-rendering.md +375 -0
- package/skills/shader-dev/techniques/voronoi-cellular-noise.md +458 -0
- package/skills/shader-dev/techniques/voxel-rendering.md +985 -0
- package/skills/shader-dev/techniques/water-ocean.md +490 -0
- package/skills/shader-dev/techniques/webgl-pitfalls.md +170 -0
- package/skills/shipping-and-launch/SKILL.md +334 -0
- package/skills/silent-failure-hunting/SKILL.md +24 -0
- package/skills/source-driven-development/SKILL.md +223 -0
- package/skills/spec-driven-development/SKILL.md +235 -0
- package/skills/spec-driven-development/references/upstream/addyosmani-agent-skills/6bcfeb9dae52b11eaad23511acc165109746dbc3/LICENSE +21 -0
- package/skills/spec-driven-development/references/upstream/addyosmani-agent-skills/6bcfeb9dae52b11eaad23511acc165109746dbc3/NOTICE.md +9 -0
- package/skills/spec-driven-development/references/upstream/addyosmani-agent-skills/6bcfeb9dae52b11eaad23511acc165109746dbc3/spec-driven-development/SKILL.upstream.md +206 -0
- package/skills/strategy-stress-test/SKILL.md +185 -0
- package/skills/systematic-literature-review/SKILL.md +77 -0
- package/skills/test-document-generator/SKILL.md +152 -0
- package/skills/test-document-generator/references/test-document-template.md +45 -0
- package/skills/test-driven-development/SKILL.md +399 -0
- package/skills/write-skills/GLOSSARY.md +113 -0
- package/skills/write-skills/SKILL.md +133 -0
- package/skills/write-skills/references/upstream/mattpocock-skills/391a2701dd948f94f56a39f7533f8eea9a859c87/LICENSE +21 -0
- package/skills/write-skills/references/upstream/mattpocock-skills/391a2701dd948f94f56a39f7533f8eea9a859c87/NOTICE.md +9 -0
- package/skills/write-skills/references/upstream/mattpocock-skills/391a2701dd948f94f56a39f7533f8eea9a859c87/productivity/writing-great-skills/GLOSSARY.md +201 -0
- package/skills/write-skills/references/upstream/mattpocock-skills/391a2701dd948f94f56a39f7533f8eea9a859c87/productivity/writing-great-skills/SKILL.upstream.md +83 -0
- package/src/runtime/child-guard.ts +70 -0
- package/src/runtime/conflicts.ts +25 -0
- package/src/runtime/contracts.ts +9 -0
- package/src/runtime/doctor.ts +134 -0
- package/src/runtime/global-resources.ts +152 -0
- package/src/runtime/index.ts +23 -0
- package/src/runtime/lifecycle.ts +19 -0
- package/src/runtime/native-integrations.ts +44 -0
- package/src/runtime/path-boundaries.ts +69 -0
- package/src/runtime/registry.ts +213 -0
- package/src/runtime/roles.ts +64 -0
- package/src/runtime/rose-context.ts +24 -0
- package/src/runtime/subagents.ts +426 -0
- package/templates/APPEND_SYSTEM.md +12 -0
- package/upstream/aili-workflows.lock.json +3226 -0
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Harness Change Report Template
|
|
2
|
+
|
|
3
|
+
Use this before any harness edit.
|
|
4
|
+
|
|
5
|
+
## Summary
|
|
6
|
+
|
|
7
|
+
- Trace ID:
|
|
8
|
+
- Date:
|
|
9
|
+
- Reporter:
|
|
10
|
+
- Status: proposed | approved | applied | rejected | rolled-back
|
|
11
|
+
|
|
12
|
+
## Required Fields
|
|
13
|
+
|
|
14
|
+
- Observed failure or rationale:
|
|
15
|
+
- Evidence anchors:
|
|
16
|
+
- Primary affected component:
|
|
17
|
+
- Secondary components:
|
|
18
|
+
- Root cause hypothesis:
|
|
19
|
+
- Proposed change:
|
|
20
|
+
- Predicted fix:
|
|
21
|
+
- At-risk regression:
|
|
22
|
+
- Verification trigger:
|
|
23
|
+
- Rollback plan:
|
|
24
|
+
- Unknowns:
|
|
25
|
+
- Approval status:
|
|
26
|
+
- Application status:
|
|
27
|
+
- Verification result:
|
|
28
|
+
- Final verdict:
|
|
29
|
+
- Memory/evidence pointer:
|
|
30
|
+
|
|
31
|
+
## Rule
|
|
32
|
+
|
|
33
|
+
If approval status is missing for a core harness edit, stop at this report.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Component Taxonomy
|
|
2
|
+
|
|
3
|
+
Classify one primary component before proposing a fix.
|
|
4
|
+
|
|
5
|
+
| Component | Scope | First evidence |
|
|
6
|
+
|---|---|---|
|
|
7
|
+
| system-rules | ROSE/runtime charter, AGENTS template | `agents/rose.md`, `templates/AGENTS.md` |
|
|
8
|
+
| command | top-level command prompts | `commands/*.md` |
|
|
9
|
+
| skill | reusable workflow instructions | `.agents/skills/*/SKILL.md` and references |
|
|
10
|
+
| subagent-config | specialist roles, packets, results | `agents/*.md`, `.agents/skills/aili-delivery-flow/references/protocols/subagent-*.md` |
|
|
11
|
+
| memory | retrieval/writeback/provenance policy | `.agents/skills/rose-memory/SKILL.md` |
|
|
12
|
+
| tool-policy | bash/git/browser/file safety | `docs/harness/tool-policies.md` |
|
|
13
|
+
| middleware/hooks | runtime interception and hooks | `.opencode/`, setup docs |
|
|
14
|
+
| environment | host constraints and capabilities | setup docs, verification logs |
|
|
15
|
+
| workflow-pattern | lifecycle and review/repair sequencing | `aili-delivery-flow` references |
|
|
16
|
+
| docs/protocol | templates and architecture docs | `docs/harness/**`, `.agents/skills/aili-delivery-flow/references/protocols/**` |
|
|
17
|
+
| install/setup | distribution and installation paths | install scripts, setup docs |
|
|
18
|
+
|
|
19
|
+
Use the narrowest-fix rule: propose `system-rules` changes only when a narrower component cannot solve the root cause.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Verdict Policy
|
|
2
|
+
|
|
3
|
+
Record a verdict after proposal review or applied verification.
|
|
4
|
+
|
|
5
|
+
| Verdict | Meaning |
|
|
6
|
+
|---|---|
|
|
7
|
+
| `pass` | Approved change was applied and verification passed. |
|
|
8
|
+
| `needs-review` | Proposal or applied change has partial evidence or human judgement pending. |
|
|
9
|
+
| `blocked` | Approval, context, scope, or verification is missing. |
|
|
10
|
+
| `rejected` | Proposal should not be applied. |
|
|
11
|
+
| `rolled-back` | Applied change was reverted or superseded after verification or review. |
|
|
12
|
+
|
|
13
|
+
Every verdict must include evidence pointer, remaining risks, and next action. Memory recording must use the approved `rose-memory` CLI workflow when requested; do not write SQLite manually.
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: harness-issue-triage
|
|
3
|
+
description: Diagnose user-reported AILI/ROSE harness or workflow behavior problems without editing files; use when the user says a command, skill trigger, subagent packet, memory flow, installer, docs, or agent prompt behavior is wrong and wants to know where the issue lives and how to fix it. Do not use for normal product-code bugs; return any approved modification need to ROSE.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Harness Issue Triage
|
|
7
|
+
|
|
8
|
+
Use this skill to localize harness problems before proposing or applying harness changes.
|
|
9
|
+
|
|
10
|
+
The default output is a diagnosis and recommended fix path, not file edits.
|
|
11
|
+
|
|
12
|
+
## When to Use
|
|
13
|
+
|
|
14
|
+
- User says the workflow, ROSE behavior, slash command, skill routing, subagent packet/result, memory writeback, installer, OpenCode setup, or harness documentation is wrong.
|
|
15
|
+
- User asks “这个问题出在哪里”, “哪里不合适”, “为什么 agent 不按流程走”, or “应该改哪个文件”.
|
|
16
|
+
- Reviewing whether a proposed harness change targets the right component.
|
|
17
|
+
|
|
18
|
+
Do not use this for ordinary application bugs or product-code implementation issues.
|
|
19
|
+
|
|
20
|
+
## Workflow
|
|
21
|
+
|
|
22
|
+
1. Restate the observed behavior and expected behavior in one sentence.
|
|
23
|
+
2. Locate the likely component using `references/component-diagnosis.md`.
|
|
24
|
+
3. Collect only the smallest needed evidence anchors.
|
|
25
|
+
4. Classify the issue as command, skill, protocol, docs, installer, memory, subagent packet/result, tool policy, environment, or agent/system prompt.
|
|
26
|
+
5. Explain the narrowest fix and why broader prompt changes are or are not needed.
|
|
27
|
+
6. If a core harness edit is needed, stop with a triage report and return the exact approval/change need to ROSE; this skill does not invoke `harness-evolution`.
|
|
28
|
+
|
|
29
|
+
🛑 STOP / fallback table:
|
|
30
|
+
|
|
31
|
+
| Condition | Conservative fallback |
|
|
32
|
+
|---|---|
|
|
33
|
+
| Packaged `references/` are missing or unreadable | Do not guess; report `BLOCKED_CONTEXT_INSUFFICIENT` and name the missing reference. |
|
|
34
|
+
| Evidence is insufficient to localize a component | Return a partial triage with observed facts, unknowns, and the next read-only evidence request. |
|
|
35
|
+
| The issue is actually product-code, app behavior, or ordinary test failure | Stop triage and return the exact debugging/planning/implementation mismatch to ROSE; do not label it a harness defect. |
|
|
36
|
+
| Downstream repo lacks `docs/harness/**` | Use packaged references first; mark source-repo docs as unavailable, not required. |
|
|
37
|
+
| User asks to edit during triage | Refuse edits in this skill and return the exact approval/change need to ROSE. |
|
|
38
|
+
|
|
39
|
+
## Boundaries
|
|
40
|
+
|
|
41
|
+
- Read-only by default: do not edit, stage, commit, push, or rewrite harness files.
|
|
42
|
+
- Do not modify `agents/rose.md` during normal tasks.
|
|
43
|
+
- Agent prompt changes require an explicit harness maintenance task and user approval.
|
|
44
|
+
- Read `docs/harness/**` only for harness issues, harness maintenance, or review of a harness change.
|
|
45
|
+
- In downstream/global installs, do not assume `docs/harness/**` exists. Use this skill’s packaged `references/` first.
|
|
46
|
+
- Do not fabricate ownership from file names alone; every component call needs a reference, path, or quoted rule as evidence.
|
|
47
|
+
|
|
48
|
+
## Output
|
|
49
|
+
|
|
50
|
+
Use `references/triage-report-template.md`.
|
|
51
|
+
|
|
52
|
+
Minimum fields:
|
|
53
|
+
|
|
54
|
+
- observed behavior;
|
|
55
|
+
- expected behavior;
|
|
56
|
+
- primary component;
|
|
57
|
+
- evidence anchors;
|
|
58
|
+
- recommended fix;
|
|
59
|
+
- approval needed: yes/no;
|
|
60
|
+
- next skill or action.
|
|
61
|
+
|
|
62
|
+
## Handoff
|
|
63
|
+
|
|
64
|
+
- If the user only asked “where is the problem”, stop after the triage report.
|
|
65
|
+
- If the user approves a harness change, return the accepted scope to ROSE so it can separately select `harness-evolution`.
|
|
66
|
+
- If the issue is not harness-related, return the exact debugging, planning, review, or implementation mismatch to ROSE.
|
|
67
|
+
|
|
68
|
+
## Symlink Runtime Note
|
|
69
|
+
|
|
70
|
+
Selective OpenCode install links repository source `.agents/skills/*` into the shared `$HOME/.agents/skills/<name>` directory. This makes this skill and its `references/` available at runtime.
|
|
71
|
+
|
|
72
|
+
Source-repo docs such as `docs/harness/**` are maintenance documentation, not guaranteed runtime context in downstream projects. Keep any always-needed triage rules inside this skill’s `references/`.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# Component Diagnosis Reference
|
|
2
|
+
|
|
3
|
+
Use this map to locate harness behavior problems before proposing a change.
|
|
4
|
+
|
|
5
|
+
| Signal | Primary component | First evidence to check | Typical fix path |
|
|
6
|
+
|---|---|---|---|
|
|
7
|
+
| User input after `/ideate`, `/define`, `/build`, or `/ship` is lost | command | `commands/*.md` | command prompt/frontmatter fix |
|
|
8
|
+
| Command enters the wrong lifecycle mode | command, delivery skill | `commands/*.md`, `.agents/skills/aili-delivery-flow/references/lifecycle.md` | command route or lifecycle wording fix |
|
|
9
|
+
| Skill triggers too often or not enough | skill routing | target `SKILL.md` frontmatter/body, `agents/rose.md`, `.agents/skills/aili-delivery-flow/SKILL.md` | narrow trigger/body or canonical routing fix |
|
|
10
|
+
| Agent skips required lifecycle gate | delivery skill, command, agent runtime charter | `.agents/skills/aili-delivery-flow/**`, `agents/rose.md` only if always-loaded invariant is missing | lifecycle reference fix first; prompt fix only with approval |
|
|
11
|
+
| Subagent result lacks evidence or scope | subagent packet/result protocol | `.agents/skills/aili-delivery-flow/references/protocols/subagent-*.md`, relevant agent file | packet/result contract fix |
|
|
12
|
+
| Completion claim lacks proof | verification/tool policy | global Goal-Driven Verification rules, `.agents/skills/aili-delivery-flow/**`, `.agents/skills/review-pipeline`, `docs/harness/tool-policies.md` if in source repo | canonical claim-matched verification or closeout fix |
|
|
13
|
+
| Memory writeback/retrieval is missing or unsafe | memory | `.agents/skills/rose-memory/SKILL.md`, memory CLI evidence | memory workflow fix, no raw DB edits |
|
|
14
|
+
| Installed runtime cannot find a skill/command | install/setup | `scripts/install_opencode.sh`, `docs/opencode-setup.md` if in source repo | installer or setup doc fix |
|
|
15
|
+
| OpenCode runtime cannot read harness docs | packaging/context | installed skill `references/`, source repo path, setup docs | move required rules into skill references or document repo-local lookup |
|
|
16
|
+
| Tool misuse, secret exposure, or destructive command risk | tool policy, security | agent permissions, tool policy docs, installer script | safety guard/security review |
|
|
17
|
+
| User says ROSE itself is wrong or not obeying | agent/system prompt only after narrower checks | `agents/rose.md`, project `AGENTS.md`, relevant skill references | prompt change only in explicit harness maintenance task with approval |
|
|
18
|
+
|
|
19
|
+
## Rules
|
|
20
|
+
|
|
21
|
+
- Prefer the narrowest component that can explain the failure.
|
|
22
|
+
- Do not treat `agents/rose.md` as an editable target during normal tasks.
|
|
23
|
+
- Consider `agents/rose.md` only when an always-loaded invariant is genuinely missing and the user has approved a harness maintenance change.
|
|
24
|
+
- Mark uncertainty explicitly when evidence is incomplete.
|
|
25
|
+
- Triage reports are safe; core harness edits require approval.
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Harness Issue Triage Report Template
|
|
2
|
+
|
|
3
|
+
## Summary
|
|
4
|
+
|
|
5
|
+
- Trace ID:
|
|
6
|
+
- Status: localized | needs-evidence | not-harness | blocked
|
|
7
|
+
- Observed behavior:
|
|
8
|
+
- Expected behavior:
|
|
9
|
+
|
|
10
|
+
## Localization
|
|
11
|
+
|
|
12
|
+
- Primary component:
|
|
13
|
+
- Secondary components:
|
|
14
|
+
- Why this component:
|
|
15
|
+
- Agent prompt assessment:
|
|
16
|
+
|
|
17
|
+
## Evidence
|
|
18
|
+
|
|
19
|
+
- Evidence anchors:
|
|
20
|
+
- Missing evidence:
|
|
21
|
+
- Assumptions:
|
|
22
|
+
|
|
23
|
+
## Recommended Fix Path
|
|
24
|
+
|
|
25
|
+
- Proposed fix:
|
|
26
|
+
- Files likely to change:
|
|
27
|
+
- Verification trigger:
|
|
28
|
+
- Regression risk:
|
|
29
|
+
- Approval needed: yes | no
|
|
30
|
+
- Next skill/action:
|
|
31
|
+
|
|
32
|
+
## Stop Rule
|
|
33
|
+
|
|
34
|
+
If the recommended fix touches `agents/rose.md`, commands, skill routing, subagent contracts, memory policy, install scripts, hooks, or harness docs, stop here unless the user explicitly approves a harness maintenance change.
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: harness-optimization-audit
|
|
3
|
+
description: Report-first audit for AILI/ROSE harness routing, context cost, review fan-out, subagent parallelism, trigger noise, false PASS risk, and evidence-loss risk. Use when optimizing harness quality or cost; do not edit core harness controls or invoke another process skill.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Harness Optimization Audit
|
|
7
|
+
|
|
8
|
+
## Purpose
|
|
9
|
+
|
|
10
|
+
Use this skill to audit whether the AILI/ROSE harness is spending attention, tokens, subagents, and review lanes on the right work.
|
|
11
|
+
|
|
12
|
+
The default output is a report with evidence and recommendations. It is not an implementation workflow and must not edit core harness controls.
|
|
13
|
+
|
|
14
|
+
## Trigger
|
|
15
|
+
|
|
16
|
+
- User asks to optimize or audit agent/skill routing, trigger noise, subagent usage, review fan-out, or context/token cost.
|
|
17
|
+
- A workflow repeatedly over-triggers skills, misses required skills, dispatches too many or too few subagents, or loses evidence between lanes.
|
|
18
|
+
- Review-pipeline behavior appears too expensive, too shallow, or poorly matched to changed surfaces.
|
|
19
|
+
- ROSE or a subagent claims PASS despite skipped gates, stale evidence, partial lane output, or missing `Unverified` fields.
|
|
20
|
+
- A harness change proposal needs cost/quality tradeoff analysis before `harness-evolution` edits.
|
|
21
|
+
|
|
22
|
+
## Near Misses
|
|
23
|
+
|
|
24
|
+
- One concrete harness bug needing localization, approved harness edits, product-code performance, ordinary code/coverage review, or one-change false-success review are different primary intents. Return the exact mismatch and candidate owner to ROSE; do not invoke another skill here.
|
|
25
|
+
|
|
26
|
+
## Required Routing
|
|
27
|
+
|
|
28
|
+
- Owner: ROSE/`aili-delivery-flow`; direct report-only audit is the default, with one fresh read-only assignment only after a concrete benefit decision.
|
|
29
|
+
- Mode: read-only report first.
|
|
30
|
+
- Inputs: active user goal, relevant workflow files or docs, changed harness surfaces, observed failure or cost signal, current verification/review evidence, and any accepted OpenSpec or proposal constraints.
|
|
31
|
+
- Handoff: return an approved edit or unlocalized defect need to ROSE; ROSE separately selects the next bounded owner.
|
|
32
|
+
|
|
33
|
+
## Audit Dimensions
|
|
34
|
+
|
|
35
|
+
### 1. Trigger Precision
|
|
36
|
+
|
|
37
|
+
- Which skills or agents fire too often, too late, or not at all?
|
|
38
|
+
- Are descriptions narrow enough to avoid catch-all activation?
|
|
39
|
+
- Do near misses point to the correct adjacent skill?
|
|
40
|
+
- Does routing preserve `/ideate`, `/define`, `/build`, and `/ship` as top-level lifecycle entrypoints?
|
|
41
|
+
|
|
42
|
+
### 2. Context and Token Cost
|
|
43
|
+
|
|
44
|
+
- Does the workflow load large skills, docs, logs, or references before they are needed?
|
|
45
|
+
- Can a shorter trigger, progressive disclosure, or evidence-only scout reduce context without losing safety?
|
|
46
|
+
- Are repeated reads, duplicate searches, or raw logs being carried across phases unnecessarily?
|
|
47
|
+
- Are completion reports concise while still preserving evidence, `Unverified`, and skipped-check fields?
|
|
48
|
+
|
|
49
|
+
### 3. Subagent Parallelism
|
|
50
|
+
|
|
51
|
+
- Was Task used only for explicit user request, a required specialist, materially noisy context, or at least two independent units with clear benefit?
|
|
52
|
+
- Could ROSE have completed the work directly with less startup/reconciliation cost?
|
|
53
|
+
- Are overlapping edit scopes, hidden dependencies, or shared mutable state forcing serial execution?
|
|
54
|
+
- Is each Task context single-use, fresh, terminal, non-delegating, and independently benefit-gated rather than resumed/retried?
|
|
55
|
+
- Are packets compact but complete enough to prevent rework and missing evidence?
|
|
56
|
+
- Are lane outputs reconciled by ROSE instead of copied as final truth?
|
|
57
|
+
|
|
58
|
+
### 4. Review-Pipeline Fan-Out
|
|
59
|
+
|
|
60
|
+
- Does one primary review question use at most one auxiliary capability for a concrete gap instead of selecting a code/test/coverage/security/silent-failure/browser/E2E/AI-regression set?
|
|
61
|
+
- Are unselected capabilities simply omitted rather than producing lane-selection ceremony?
|
|
62
|
+
- Is a truly claim-required high-risk capability missing because the change looked small?
|
|
63
|
+
- Does one targeted repair/recheck refresh only the affected claim instead of restarting review lanes?
|
|
64
|
+
|
|
65
|
+
### 5. False PASS and Evidence Loss
|
|
66
|
+
|
|
67
|
+
- Could stale logs, partial command output, missing exit codes, skipped tests, or stale screenshots be mistaken for fresh proof?
|
|
68
|
+
- Are `PASS`, `NEEDS_REVIEW`, blocked statuses, and `Unverified` used consistently?
|
|
69
|
+
- Is evidence lost when moving between ROSE, subagents, review-pipeline, test reports, and final completion reports?
|
|
70
|
+
- Are clean reviews required to name residual risk rather than implying zero risk?
|
|
71
|
+
|
|
72
|
+
## Report Workflow
|
|
73
|
+
|
|
74
|
+
1. State the optimization question in one sentence.
|
|
75
|
+
2. List the harness surfaces inspected and the evidence anchors used.
|
|
76
|
+
3. Classify each issue as `cost`, `quality`, `routing`, `parallelism`, `fan-out`, `false-pass`, or `evidence-loss`.
|
|
77
|
+
4. Rank each issue by impact: Critical, Important, Suggestion, or Observation.
|
|
78
|
+
5. Recommend the smallest safe change, or say no change when the current cost buys necessary safety.
|
|
79
|
+
6. For every recommendation, name the owner path: no edit, docs-only, skill text, command prompt, agent prompt, installer/config, fixture/test, or `harness-evolution` approval needed.
|
|
80
|
+
7. Mark anything not proven by inspected evidence as `Unverified`.
|
|
81
|
+
|
|
82
|
+
## Output Contract
|
|
83
|
+
|
|
84
|
+
```text
|
|
85
|
+
HARNESS OPTIMIZATION AUDIT: PASS | NEEDS_CHANGES | BLOCKED | PARTIAL
|
|
86
|
+
|
|
87
|
+
QUESTION:
|
|
88
|
+
- <routing/cost/quality question>
|
|
89
|
+
|
|
90
|
+
EVIDENCE:
|
|
91
|
+
- Surfaces inspected:
|
|
92
|
+
- Commands/logs inspected:
|
|
93
|
+
- Not inspected / Unverified:
|
|
94
|
+
|
|
95
|
+
FINDINGS:
|
|
96
|
+
- [Critical|Important|Suggestion|Observation][cost|quality|routing|parallelism|fan-out|false-pass|evidence-loss] evidence - issue - recommendation
|
|
97
|
+
|
|
98
|
+
TRADEOFFS:
|
|
99
|
+
- Safety kept:
|
|
100
|
+
- Cost reduced or not reduced:
|
|
101
|
+
- Risk introduced:
|
|
102
|
+
|
|
103
|
+
APPROVED EDIT PATH:
|
|
104
|
+
- No edit needed | exact proposed edit and current approval state | exact read-only diagnosis need returned to ROSE
|
|
105
|
+
|
|
106
|
+
VERIFICATION PLAN:
|
|
107
|
+
- <fixture, smoke check, script, review lane, or manual/static check>
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
## Boundaries
|
|
111
|
+
|
|
112
|
+
- Do not edit core harness controls from this skill.
|
|
113
|
+
- Core harness controls include ROSE/runtime rules, command prompts, agent prompts, skill routing, subagent contracts, memory policy, installer/config behavior, review gates, and harness docs.
|
|
114
|
+
- Do not weaken verification, security, review, or evidence gates only to reduce token cost.
|
|
115
|
+
- Do not add dependencies, mutate memory databases, change manifests, commit, push, or rewrite workflow history.
|
|
116
|
+
- Do not treat a cheaper route as better unless it preserves required safety, evidence, and lifecycle ownership.
|
|
117
|
+
|
|
118
|
+
## Verification
|
|
119
|
+
|
|
120
|
+
Before returning an audit:
|
|
121
|
+
|
|
122
|
+
- Confirm every recommendation names an evidence anchor and a safe edit path.
|
|
123
|
+
- Confirm cost-saving suggestions do not remove required review, security, verification, or `Unverified` reporting.
|
|
124
|
+
- Confirm approved core-harness edits are handed to `harness-evolution`, not applied here.
|
|
125
|
+
- Confirm the report states what was not inspected and what remains `Unverified`.
|
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: idea-refine
|
|
3
|
+
description: Refines raw ideas through structured divergent and convergent thinking for ordinary non-command brainstorming, idea shaping, options comparison, and explicit IDEATE deepening routed by `aili-delivery-flow`; do not use as the top-level `/ideate` command owner or for existing-plan stress-test, review, or completion-claim checks.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Idea Refine
|
|
7
|
+
|
|
8
|
+
Refines raw ideas into sharp, actionable concepts worth building through structured divergent and convergent thinking.
|
|
9
|
+
|
|
10
|
+
## Routing Boundary
|
|
11
|
+
|
|
12
|
+
Use this skill for ordinary non-command brainstorming and idea shaping, or when `aili-delivery-flow` explicitly routes an IDEATE session here for deeper divergence, convergence, or options comparison. Do not treat `/ideate` as this skill's own top-level trigger; lifecycle entry remains owned by `aili-delivery-flow`. Do not use this skill for stress-testing an existing plan, reviewing work, or validating a completion claim; route those scenarios to the appropriate review or stress-test skill.
|
|
13
|
+
|
|
14
|
+
The pinned Addy closure under `references/upstream/` is inert provenance/reference data. This canonical adapter keeps divergent → convergent → one-pager while mapping foreign tools and paths to AILI repository evidence, current interaction, and user-confirmed artifact placement. Never execute `idea-refine.upstream.sh`, register upstream frontmatter, or treat it as lifecycle/permission authority.
|
|
15
|
+
|
|
16
|
+
## How It Works
|
|
17
|
+
|
|
18
|
+
1. **Understand & Expand (Divergent):** Restate the idea, ask sharpening questions, and generate variations.
|
|
19
|
+
2. **Evaluate & Converge:** Cluster ideas, stress-test them, and surface hidden assumptions.
|
|
20
|
+
3. **Sharpen & Ship:** Produce a concrete markdown one-pager moving work forward.
|
|
21
|
+
|
|
22
|
+
## Usage
|
|
23
|
+
|
|
24
|
+
This skill is primarily an interactive dialogue. Invoke it with an idea, and the agent will guide you through the process.
|
|
25
|
+
|
|
26
|
+
No script or bundled resource is required. Run this as an interactive conversation; write files only after the user confirms the destination.
|
|
27
|
+
|
|
28
|
+
**Trigger Phrases:**
|
|
29
|
+
- "Help me refine this idea"
|
|
30
|
+
- "Brainstorm on [concept]"
|
|
31
|
+
- "Compare directions for [concept]"
|
|
32
|
+
|
|
33
|
+
## Output
|
|
34
|
+
|
|
35
|
+
The final output is a markdown one-pager saved to `docs/ideas/[idea-name].md` (after user confirmation), containing:
|
|
36
|
+
- Problem Statement
|
|
37
|
+
- Recommended Direction
|
|
38
|
+
- Key Assumptions
|
|
39
|
+
- MVP Scope
|
|
40
|
+
- Not Doing list
|
|
41
|
+
|
|
42
|
+
## Detailed Instructions
|
|
43
|
+
|
|
44
|
+
You are an ideation partner. Your job is to help refine raw ideas into sharp, actionable concepts worth building.
|
|
45
|
+
|
|
46
|
+
### Philosophy
|
|
47
|
+
|
|
48
|
+
- Simplicity is the ultimate sophistication. Push toward the simplest version that still solves the real problem.
|
|
49
|
+
- Start with the user experience, work backwards to technology.
|
|
50
|
+
- Say no to 1,000 things. Focus beats breadth.
|
|
51
|
+
- Challenge every assumption. "How it's usually done" is not a reason.
|
|
52
|
+
- Show people the future — don't just give them better horses.
|
|
53
|
+
- The parts you can't see should be as beautiful as the parts you can.
|
|
54
|
+
|
|
55
|
+
### Process
|
|
56
|
+
|
|
57
|
+
When the user invokes this skill with an idea (`$ARGUMENTS`), guide them through three phases. Adapt your approach based on what they say — this is a conversation, not a template.
|
|
58
|
+
|
|
59
|
+
#### Phase 1: Understand & Expand (Divergent)
|
|
60
|
+
|
|
61
|
+
**Goal:** Take the raw idea and open it up.
|
|
62
|
+
|
|
63
|
+
1. **Restate the idea** as a crisp "How Might We" problem statement. This forces clarity on what's actually being solved.
|
|
64
|
+
|
|
65
|
+
2. **Ask 3-5 sharpening questions** — no more. Focus on:
|
|
66
|
+
- Who is this for, specifically?
|
|
67
|
+
- What does success look like?
|
|
68
|
+
- What are the real constraints (time, tech, resources)?
|
|
69
|
+
- What's been tried before?
|
|
70
|
+
- Why now?
|
|
71
|
+
|
|
72
|
+
Ask these questions directly in chat. Do NOT proceed until you understand who this is for and what success looks like.
|
|
73
|
+
|
|
74
|
+
🔴 CHECKPOINT / 🛑 STOP: If the user stays vague after one question round, stop expansion and offer exactly two paths: (a) continue with explicit assumptions labeled `Assumption`, or (b) answer the missing target-user/success questions first.
|
|
75
|
+
|
|
76
|
+
3. **Generate 5-8 idea variations** using these lenses:
|
|
77
|
+
- **Inversion:** "What if we did the opposite?"
|
|
78
|
+
- **Constraint removal:** "What if budget/time/tech weren't factors?"
|
|
79
|
+
- **Audience shift:** "What if this were for [different user]?"
|
|
80
|
+
- **Combination:** "What if we merged this with [adjacent idea]?"
|
|
81
|
+
- **Simplification:** "What's the version that's 10x simpler?"
|
|
82
|
+
- **10x version:** "What would this look like at massive scale?"
|
|
83
|
+
- **Expert lens:** "What would [domain] experts find obvious that outsiders wouldn't?"
|
|
84
|
+
|
|
85
|
+
Push beyond what the user initially asked for. Create products people don't know they need yet.
|
|
86
|
+
|
|
87
|
+
**If running inside a codebase:** Use `Glob`, `Grep`, and `Read` to scan for relevant context — existing architecture, patterns, constraints, prior art. Ground your variations in what actually exists. Reference specific files and patterns when relevant.
|
|
88
|
+
|
|
89
|
+
Use only the lenses listed above unless the user provides another framework. Do not cite missing local resource files.
|
|
90
|
+
|
|
91
|
+
#### Phase 2: Evaluate & Converge
|
|
92
|
+
|
|
93
|
+
After the user reacts to Phase 1 (indicates which ideas resonate, pushes back, adds context), shift to convergent mode:
|
|
94
|
+
|
|
95
|
+
1. **Cluster** the ideas that resonated into 2-3 distinct directions. Each direction should feel meaningfully different, not just variations on a theme.
|
|
96
|
+
|
|
97
|
+
2. **Stress-test** each direction against three criteria:
|
|
98
|
+
- **User value:** Who benefits and how much? Is this a painkiller or a vitamin?
|
|
99
|
+
- **Feasibility:** What's the technical and resource cost? What's the hardest part?
|
|
100
|
+
- **Differentiation:** What makes this genuinely different? Would someone switch from their current solution?
|
|
101
|
+
|
|
102
|
+
Use the three criteria above as the full rubric unless the user supplies a different rubric.
|
|
103
|
+
|
|
104
|
+
3. **Surface hidden assumptions.** For each direction, explicitly name:
|
|
105
|
+
- What you're betting is true (but haven't validated)
|
|
106
|
+
- What could kill this idea
|
|
107
|
+
- What you're choosing to ignore (and why that's okay for now)
|
|
108
|
+
|
|
109
|
+
This is where most ideation fails. Don't skip it.
|
|
110
|
+
|
|
111
|
+
**Be honest, not supportive.** If an idea is weak, say so with kindness. A good ideation partner is not a yes-machine. Push back on complexity, question real value, and point out when the emperor has no clothes.
|
|
112
|
+
|
|
113
|
+
#### Phase 3: Sharpen & Ship
|
|
114
|
+
|
|
115
|
+
Produce a concrete artifact — a markdown one-pager that moves work forward:
|
|
116
|
+
|
|
117
|
+
```markdown
|
|
118
|
+
# [Idea Name]
|
|
119
|
+
|
|
120
|
+
## Problem Statement
|
|
121
|
+
[One-sentence "How Might We" framing]
|
|
122
|
+
|
|
123
|
+
## Recommended Direction
|
|
124
|
+
[The chosen direction and why — 2-3 paragraphs max]
|
|
125
|
+
|
|
126
|
+
## Key Assumptions to Validate
|
|
127
|
+
- [ ] [Assumption 1 — how to test it]
|
|
128
|
+
- [ ] [Assumption 2 — how to test it]
|
|
129
|
+
- [ ] [Assumption 3 — how to test it]
|
|
130
|
+
|
|
131
|
+
## MVP Scope
|
|
132
|
+
[The minimum version that tests the core assumption. What's in, what's out.]
|
|
133
|
+
|
|
134
|
+
## Not Doing (and Why)
|
|
135
|
+
- [Thing 1] — [reason]
|
|
136
|
+
- [Thing 2] — [reason]
|
|
137
|
+
- [Thing 3] — [reason]
|
|
138
|
+
|
|
139
|
+
## Open Questions
|
|
140
|
+
- [Question that needs answering before building]
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
**The "Not Doing" list is arguably the most valuable part.** Focus is about saying no to good ideas. Make the trade-offs explicit.
|
|
144
|
+
|
|
145
|
+
Ask the user if they'd like to save this to `docs/ideas/[idea-name].md` (or a location of their choosing). Only save if they confirm.
|
|
146
|
+
|
|
147
|
+
### Fallbacks
|
|
148
|
+
|
|
149
|
+
| Trigger | First action | If still unresolved |
|
|
150
|
+
|---|---|---|
|
|
151
|
+
| User gives only a slogan or one-line idea | Ask 3 targeted questions for user, success, and constraint | Proceed only with labeled assumptions or stop for answers |
|
|
152
|
+
| User asks for implementation before convergence | Return to Phase 2 and name assumptions to validate | Produce only the one-pager, not build steps |
|
|
153
|
+
| No safe output path is known | Ask where to save the one-pager | Provide the markdown in the reply without writing a file |
|
|
154
|
+
|
|
155
|
+
### Anti-patterns to Avoid
|
|
156
|
+
|
|
157
|
+
- **Don't generate 20+ ideas.** Quality over quantity. 5-8 well-considered variations beat 20 shallow ones.
|
|
158
|
+
- **Don't be a yes-machine.** Push back on weak ideas with specificity and kindness.
|
|
159
|
+
- **Don't skip "who is this for."** Every good idea starts with a person and their problem.
|
|
160
|
+
- **Don't produce a plan without surfacing assumptions.** Untested assumptions are the #1 killer of good ideas.
|
|
161
|
+
- **Don't over-engineer the process.** Three phases, each doing one thing well. Resist adding steps.
|
|
162
|
+
- **Don't just list ideas — tell a story.** Each variation should have a reason it exists, not just be a bullet point.
|
|
163
|
+
- **Don't ignore the codebase.** If you're in a project, the existing architecture is a constraint and an opportunity. Use it.
|
|
164
|
+
|
|
165
|
+
### Tone
|
|
166
|
+
|
|
167
|
+
Direct, thoughtful, slightly provocative. You're a sharp thinking partner, not a facilitator reading from a script. Channel the energy of "that's interesting, but what if..." -- always pushing one step further without being exhausting.
|
|
168
|
+
|
|
169
|
+
Do not rely on external examples unless the user provides them; the template in Phase 3 is the source of truth.
|
|
170
|
+
|
|
171
|
+
## Red Flags
|
|
172
|
+
|
|
173
|
+
- Generating 20+ shallow variations instead of 5-8 considered ones
|
|
174
|
+
- Skipping the "who is this for" question
|
|
175
|
+
- No assumptions surfaced before committing to a direction
|
|
176
|
+
- Yes-machining weak ideas instead of pushing back with specificity
|
|
177
|
+
- Producing a plan without a "Not Doing" list
|
|
178
|
+
- Ignoring existing codebase constraints when ideating inside a project
|
|
179
|
+
- Jumping straight to Phase 3 output without running Phases 1 and 2
|
|
180
|
+
|
|
181
|
+
## Verification
|
|
182
|
+
|
|
183
|
+
After completing an ideation session:
|
|
184
|
+
|
|
185
|
+
- [ ] A clear "How Might We" problem statement exists
|
|
186
|
+
- [ ] The target user and success criteria are defined
|
|
187
|
+
- [ ] Multiple directions were explored, not just the first idea
|
|
188
|
+
- [ ] Hidden assumptions are explicitly listed with validation strategies
|
|
189
|
+
- [ ] A "Not Doing" list makes trade-offs explicit
|
|
190
|
+
- [ ] The output is a concrete artifact (markdown one-pager), not just conversation
|
|
191
|
+
- [ ] The user confirmed the final direction before any implementation work
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Addy Osmani
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# Upstream reference notice
|
|
2
|
+
|
|
3
|
+
- Repository: `https://github.com/addyosmani/agent-skills`
|
|
4
|
+
- Commit: `6bcfeb9dae52b11eaad23511acc165109746dbc3`
|
|
5
|
+
- Copyright: Copyright (c) 2025 Addy Osmani
|
|
6
|
+
- License: root MIT `LICENSE` copied beside this notice
|
|
7
|
+
- Mappings: `skills/idea-refine/SKILL.md` → `idea-refine/SKILL.upstream.md`; other Markdown keeps its basename; `scripts/idea-refine.sh` → `scripts/idea-refine.upstream.sh` mode `0644`.
|
|
8
|
+
|
|
9
|
+
The pinned closure is inert provenance/reference data. The shell file must never be executed. This is not a runnable skill, command, approval, integrity authority, or permission grant. Canonical behavior remains `.agents/skills/idea-refine/SKILL.md`.
|