@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,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
|
+
- Mapping: `skills/interview-me/SKILL.md` → `interview-me/SKILL.upstream.md`
|
|
8
|
+
|
|
9
|
+
The pinned closure is inert provenance/reference data, not a runnable skill, command, approval, integrity authority, or permission grant. Canonical behavior remains `.agents/skills/requirements-grilling/SKILL.md`.
|
|
@@ -0,0 +1,225 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: interview-me
|
|
3
|
+
description: Extracts what the user actually wants instead of what they think they should want. Achieves this through one-question-at-a-time interview until ~95% confidence about the underlying intent. Use when an ask is underspecified ("build me X" without "for whom" or "why now"), when the user explicitly invokes ("interview me", "grill me", "are we sure?", "stress-test my thinking"), or when you catch yourself silently filling in ambiguous requirements before any plan, spec, or code exists.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Interview Me
|
|
7
|
+
|
|
8
|
+
## Overview
|
|
9
|
+
|
|
10
|
+
What people ask for and what they actually want are different things. They ask for "a dashboard" because that's what one asks for, not because a dashboard solves their problem. They say "make it faster" without a number to hit.
|
|
11
|
+
|
|
12
|
+
The cheapest moment to find this gap is before any plan, spec, or code exists. Once you've started building, switching costs are real, and the user will rationalize the wrong thing into a "good enough" thing. The misfit gets locked in.
|
|
13
|
+
|
|
14
|
+
This skill closes the gap before it costs anything. The other Define-phase skills assume you already know roughly what you want: `idea-refine` generates variations from an idea, `spec-driven-development` writes the requirements down, `doubt-driven-development` stress-tests a plan after you've drafted one. Interview-me is the part before all of those, where you ask one question at a time, with your best guess attached, until you can predict what the user is going to say before they say it.
|
|
15
|
+
|
|
16
|
+
## When to Use
|
|
17
|
+
|
|
18
|
+
Apply this skill when:
|
|
19
|
+
|
|
20
|
+
- The ask is missing at least one of: **who** the user is, **why** they want it, what **success** looks like, what the binding **constraint** is
|
|
21
|
+
- The request is conventional rather than specific ("build me X", "make it faster") and you can't unpack the convention without guessing
|
|
22
|
+
- You're tempted to start with assumptions you haven't surfaced
|
|
23
|
+
- The user hasn't said which value they're optimizing for when two reasonable ones are in tension (simplicity vs. flexibility, cost vs. speed)
|
|
24
|
+
- The user explicitly invokes: "interview me", "grill me", "before we start, are we sure?", "stress-test my thinking"
|
|
25
|
+
|
|
26
|
+
**When NOT to use:**
|
|
27
|
+
|
|
28
|
+
- The ask is unambiguous and self-contained ("rename this variable", "fix this typo")
|
|
29
|
+
- The user has explicitly asked for speed over verification
|
|
30
|
+
- Pure information requests ("how does X work?", "what does this code do?")
|
|
31
|
+
- Mechanical operations (renames, formats, file moves)
|
|
32
|
+
- You already have ≥95% confidence; re-read the stop condition below before assuming you don't
|
|
33
|
+
|
|
34
|
+
## Loading Constraints
|
|
35
|
+
|
|
36
|
+
This skill needs a live, responsive user. **Do not invoke in non-interactive contexts** like CI pipelines, scheduled runs, `/loop`, or autonomous-loop. If you're in one of those and the ask is underspecified, flag that as a blocker for the user instead of guessing.
|
|
37
|
+
|
|
38
|
+
## The Process
|
|
39
|
+
|
|
40
|
+
### Step 1: Hypothesize, with a confidence number
|
|
41
|
+
|
|
42
|
+
Before asking anything, write down your current best read of what the user wants in **one sentence**, plus an honest confidence number (0–100%):
|
|
43
|
+
|
|
44
|
+
```
|
|
45
|
+
HYPOTHESIS: You want a way to answer "how are we doing?" in standup, and "dashboard" was the convention that came to mind.
|
|
46
|
+
CONFIDENCE: ~30% — missing: who it's for, what "metrics" means in context, and what success looks like
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
The number forces honesty. If you wrote down a high number but can't actually predict the user's reactions to the next three questions you'd ask, the number is wrong. Start at the confidence level you can defend.
|
|
50
|
+
|
|
51
|
+
When confidence is below ~70%, append a brief reason on the same line — what's still unresolved or missing. This tells the user exactly what the interview needs to surface, and prevents the number from being a vague signal.
|
|
52
|
+
|
|
53
|
+
### Step 2: Ask one question at a time, each with a guess attached
|
|
54
|
+
|
|
55
|
+
Format:
|
|
56
|
+
|
|
57
|
+
```
|
|
58
|
+
Q: <one focused question>
|
|
59
|
+
GUESS: <your hypothesis for the answer, with the reasoning that produced it>
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
Wait for the user to react before asking the next question.
|
|
63
|
+
|
|
64
|
+
**Why one at a time, not a batch:**
|
|
65
|
+
|
|
66
|
+
- The user can't react to your hypotheses if you bury them in a list
|
|
67
|
+
- Batches encourage skim-reading and surface answers
|
|
68
|
+
- The third question often depends on the answer to the first; asking them all at once locks in the wrong framing
|
|
69
|
+
- The user's energy for thinking carefully is finite; spend it one question at a time
|
|
70
|
+
|
|
71
|
+
**Why attach a guess:**
|
|
72
|
+
|
|
73
|
+
- The user reacts faster to a wrong guess than they generate an answer from scratch
|
|
74
|
+
- It commits you to a hypothesis you can be visibly wrong about, which keeps you honest
|
|
75
|
+
- It surfaces *your* assumptions, which is what the interview is meant to expose
|
|
76
|
+
|
|
77
|
+
The risk here is a polite user agreeing with your guess to be agreeable. Mitigate by being visibly willing to be wrong, and occasionally guess in a direction you expect the user to push back on.
|
|
78
|
+
|
|
79
|
+
### Step 3: Listen for "want vs. should want"
|
|
80
|
+
|
|
81
|
+
The most dangerous answers are the ones where the user says what a thoughtful answer *sounds like* rather than what they actually want. Watch for:
|
|
82
|
+
|
|
83
|
+
- Answers that pattern-match best-practice talk ("I want it to be scalable", "clean architecture") without specifics
|
|
84
|
+
- Answers that defer to convention ("the way most apps do it", "the standard approach")
|
|
85
|
+
- Phrases like "I should probably…", "I think I'm supposed to…", "good engineering practice says…"
|
|
86
|
+
- Buzzwords as goals — when "modern", "scalable", "robust" are the answer instead of a specific outcome
|
|
87
|
+
|
|
88
|
+
When you hear these, the question to ask is:
|
|
89
|
+
|
|
90
|
+
> *"If you didn't have to justify this to anyone, what would you actually want?"*
|
|
91
|
+
|
|
92
|
+
That single question often does more work than the previous five.
|
|
93
|
+
|
|
94
|
+
### Step 4: Restate intent in the user's own words
|
|
95
|
+
|
|
96
|
+
When your confidence is high, write back what you now think the user wants. Keep it tight (5–8 lines), use their language where possible, and structure it so the user can confirm or correct line by line:
|
|
97
|
+
|
|
98
|
+
```
|
|
99
|
+
Here's what I now think you want:
|
|
100
|
+
|
|
101
|
+
- Outcome: <one line>
|
|
102
|
+
- User: <one line — who benefits>
|
|
103
|
+
- Why now: <one line — what changed>
|
|
104
|
+
- Success: <one line — how we know it worked>
|
|
105
|
+
- Constraint: <one line — the binding limit>
|
|
106
|
+
- Out of scope: <one line — what we're explicitly not doing>
|
|
107
|
+
|
|
108
|
+
Yes / no / refine?
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
Including "Out of scope" is non-negotiable. Half of misalignment is silent disagreement about what is *not* being built.
|
|
112
|
+
|
|
113
|
+
### Step 5: Confirm — explicit yes, not "whatever you think"
|
|
114
|
+
|
|
115
|
+
The gate is an explicit "yes." The following are **not** yes:
|
|
116
|
+
|
|
117
|
+
- "Whatever you think is best." → The user is delegating, which means they don't have 95% confidence either. Re-ask with two concrete options framed as a choice.
|
|
118
|
+
- "Sounds good." → Ambiguous. Ask: "Anything you'd refine?" Silence isn't confirmation.
|
|
119
|
+
- "Sure, let's go." → Often a polite exit, not an endorsement. Same follow-up.
|
|
120
|
+
- Silence followed by "okay let's start." → The user has given up on the interview, not converged. Stop and ask whether you've missed something.
|
|
121
|
+
|
|
122
|
+
If they correct you, fold the correction in and restate. Loop until you get an explicit yes.
|
|
123
|
+
|
|
124
|
+
### The 95% Confidence Stop
|
|
125
|
+
|
|
126
|
+
You're done when you can answer yes to this:
|
|
127
|
+
|
|
128
|
+
> *Can I predict the user's reaction to the next three questions I would ask?*
|
|
129
|
+
|
|
130
|
+
If yes, you have shared understanding. Stop interviewing and produce the restate. If no, you're not done; ask the next question.
|
|
131
|
+
|
|
132
|
+
This is a checkable test, not a vibe. It also has a floor: if you've gone several rounds and still can't predict, that's information about the ask, not a reason to keep grinding. Stop and tell the user: "I've asked X questions and I still can't predict your reactions. Something foundational is missing. Want to step back?"
|
|
133
|
+
|
|
134
|
+
## Output
|
|
135
|
+
|
|
136
|
+
The output of this skill is a **confirmed statement of intent**: the restate from Step 4, with an explicit yes from Step 5. That's the deliverable. Specs, plans, and task lists are downstream; they consume the intent this skill produces.
|
|
137
|
+
|
|
138
|
+
If the user wants the intent to persist (a multi-session project, a handoff to another collaborator), offer to save it to `docs/intent/[topic].md`. Only save if they confirm.
|
|
139
|
+
|
|
140
|
+
## Example
|
|
141
|
+
|
|
142
|
+
A short before-and-after.
|
|
143
|
+
|
|
144
|
+
**Without `interview-me`:**
|
|
145
|
+
|
|
146
|
+
```
|
|
147
|
+
User: build me a dashboard for our metrics
|
|
148
|
+
Agent: <starts proposing chart libraries and layouts>
|
|
149
|
+
```
|
|
150
|
+
|
|
151
|
+
The agent has assumed: who it's for, what metrics, what "for our team" means, what success looks like. None of these are stated. Every assumption is a place the user can later say "that's not what I meant."
|
|
152
|
+
|
|
153
|
+
**With `interview-me`:**
|
|
154
|
+
|
|
155
|
+
```
|
|
156
|
+
User: build me a dashboard for our metrics
|
|
157
|
+
|
|
158
|
+
Agent:
|
|
159
|
+
HYPOTHESIS: You want a way to answer "how are we doing?" in standup, and "dashboard" came to mind because that's the conventional answer.
|
|
160
|
+
CONFIDENCE: ~30% — missing: who it's for, what "metrics" are, and what success looks like
|
|
161
|
+
|
|
162
|
+
Q: When you say "how are we doing?", who's asking — you alone, the engineering team in standup, or up the chain (e.g., your manager, an exec, a board)?
|
|
163
|
+
GUESS: engineering team in standup, because "we" usually scopes that way and standups are where this question gets asked. If it's for execs the metrics and the framing change a lot.
|
|
164
|
+
|
|
165
|
+
User: It's actually for me. I keep losing track of which experiments are running and what their early signal looks like.
|
|
166
|
+
|
|
167
|
+
Agent:
|
|
168
|
+
Updated read: not a team dashboard at all. It's a personal experiment tracker. Confidence: ~60% — still missing: what "early signal" means and what done looks like.
|
|
169
|
+
|
|
170
|
+
Q: Is the gap that you don't know which experiments exist, or that you can't see their results in one place?
|
|
171
|
+
GUESS: the second one. You have a list of experiments somewhere, but their results live in five different tools, and reconciling them by hand is what you're tired of.
|
|
172
|
+
|
|
173
|
+
User: First one actually. I literally don't have a list. They're spread across different docs.
|
|
174
|
+
|
|
175
|
+
Agent: <continues>
|
|
176
|
+
```
|
|
177
|
+
|
|
178
|
+
Two questions in, the agent has discovered the actual ask isn't "a dashboard." It's "a list." Different artifact, different scope, different work. The dashboard would have been wrong.
|
|
179
|
+
|
|
180
|
+
## Interaction with Other Skills
|
|
181
|
+
|
|
182
|
+
- **`idea-refine`**: downstream. If the confirmed intent is "I want X but I don't know how to scope it," hand off to `idea-refine` to generate variations against the now-explicit intent.
|
|
183
|
+
- **`spec-driven-development`**: downstream. If the confirmed intent is concrete ("I want X for Y users with Z success criteria"), hand off to `spec-driven-development` to write it down.
|
|
184
|
+
- **`planning-and-task-breakdown`**: two hops downstream of this skill (after the spec).
|
|
185
|
+
- **`doubt-driven-development`**: opposite end of the timeline. Interview-me is pre-decision intent extraction; doubt-driven is post-decision artifact review. Both catch divergence, but at different moments.
|
|
186
|
+
- **`source-driven-development`**: orthogonal. Interview-me clarifies what the user wants; SDD verifies framework facts. They don't compete.
|
|
187
|
+
|
|
188
|
+
## Common Rationalizations
|
|
189
|
+
|
|
190
|
+
| Rationalization | Reality |
|
|
191
|
+
|---|---|
|
|
192
|
+
| "The ask is clear enough" | If you can't write the user's desired outcome in one sentence right now, the ask isn't clear. Run Step 1 before deciding. |
|
|
193
|
+
| "Asking too many questions wastes their time" | Time wasted by 4–6 targeted questions is small. Time wasted by building the wrong thing is enormous, and the user is the one bearing that cost. |
|
|
194
|
+
| "I'll figure it out as I build" | Switching costs after code exists are 10x what they are now. Discovery during implementation is rework. |
|
|
195
|
+
| "They said 'whatever you think,' so I should just decide" | "Whatever you think" is delegation, not decision. Re-ask with two concrete options as a choice. |
|
|
196
|
+
| "I should give them several options to pick from" | Options work when the user knows what they want and is choosing between trade-offs. They don't know what they want yet. Listing options widens the search; asking narrows it. |
|
|
197
|
+
| "If I attach my guess, I'm leading them" | Leading is the point. Reacting is faster than generating from scratch. The risk is sycophancy, not leading; mitigate by being visibly willing to be wrong. |
|
|
198
|
+
| "We've talked enough, I get it" | Test it: can you predict their reaction to the next three questions? If not, you don't get it yet. |
|
|
199
|
+
| "The user said yes, we're done" | If the yes followed a vague restate or an open-ended "sounds good," the yes is hollow. Restate concretely and re-confirm. |
|
|
200
|
+
|
|
201
|
+
## Red Flags
|
|
202
|
+
|
|
203
|
+
- Three or more questions in a single message: that's batching, not interviewing
|
|
204
|
+
- A question without your hypothesis attached: that's surveying, not committing
|
|
205
|
+
- Accepting "whatever you think is best" as a terminal answer
|
|
206
|
+
- Producing a spec, plan, or task list before the user has explicitly confirmed your restate
|
|
207
|
+
- Questions framed as "what would be best practice?" instead of "what do you actually want?"
|
|
208
|
+
- The user gives a sophistication-signaling answer ("scalable", "clean", "modern") and you accept it without probing whether it's what they actually want
|
|
209
|
+
- Three or more rounds without your confidence visibly rising: you're asking the wrong questions, step back and reframe
|
|
210
|
+
- A confidence number below ~70% with no reason attached: the user can't help close the gap if they don't know what's missing
|
|
211
|
+
- Saving the intent doc before the user has confirmed (the doc itself implies a yes the user didn't give)
|
|
212
|
+
- Skipping the "Out of scope" line in the restate (silent disagreement about non-goals is half of misalignment)
|
|
213
|
+
|
|
214
|
+
## Verification
|
|
215
|
+
|
|
216
|
+
After applying interview-me:
|
|
217
|
+
|
|
218
|
+
- [ ] An explicit hypothesis with a confidence number was stated in the first turn
|
|
219
|
+
- [ ] Every confidence number below ~70% was accompanied by a one-line reason (what's still unresolved or missing)
|
|
220
|
+
- [ ] Questions were asked one at a time, each with the agent's guess attached
|
|
221
|
+
- [ ] At least one "what would you actually want if you didn't have to justify it?" probe ran when the user gave a sophistication-signaling or convention-signaling answer
|
|
222
|
+
- [ ] A concrete restate (Outcome / User / Why now / Success / Constraint / Out of scope) was written back to the user
|
|
223
|
+
- [ ] The user confirmed the restate with an explicit yes (not "whatever you think," not "sounds good," not silence)
|
|
224
|
+
- [ ] At the stop point, the agent could predict reactions to the next three questions it would ask
|
|
225
|
+
- [ ] Any handoff to a downstream skill (`idea-refine`, `spec-driven-development`) was framed in terms of the confirmed intent, not the original underspecified ask
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Matt Pocock
|
|
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,12 @@
|
|
|
1
|
+
# Upstream reference notice
|
|
2
|
+
|
|
3
|
+
- Repository: `https://github.com/mattpocock/skills`
|
|
4
|
+
- Commit: `9603c1cc8118d08bc1b3bf34cf714f62178dea3b`
|
|
5
|
+
- Copyright: Copyright (c) 2026 Matt Pocock
|
|
6
|
+
- License: root MIT `LICENSE` copied beside this notice
|
|
7
|
+
- Mappings:
|
|
8
|
+
- `skills/productivity/grill-me/SKILL.md` → `grill-me/SKILL.upstream.md`
|
|
9
|
+
- `skills/productivity/grilling/SKILL.md` → `grilling/SKILL.upstream.md`
|
|
10
|
+
- `skills/in-progress/batch-grill-me/SKILL.md` → `batch-grill-me/SKILL.upstream.md`
|
|
11
|
+
|
|
12
|
+
The pinned closure is inert provenance/reference data, not a runnable skill, command, approval, integrity authority, or permission grant. Upstream `batch-grill-me` is in progress; canonical behavior remains `.agents/skills/requirements-grilling/SKILL.md` with AILI routing, artifact, evidence, and approval boundaries.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: batch-grill-me
|
|
3
|
+
description: A relentless interview that asks every frontier question at once, round by round.
|
|
4
|
+
disable-model-invocation: true
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
Interview the user relentlessly until you reach a shared understanding. Map this as a **design tree**: every decision branches into the decisions that hang off it.
|
|
8
|
+
|
|
9
|
+
Work the tree in **rounds**. The **frontier** is every decision whose prerequisites are already settled — the questions you can ask *now* without guessing at answers you haven't heard yet. Ask the whole frontier in one round: number each question and give your recommended answer. Then wait for the user's answers before the next round.
|
|
10
|
+
|
|
11
|
+
Each round the user answers reshapes the tree — settled decisions push the frontier outward and unblock questions that depended on them. Recompute the frontier and ask the next round. A question whose answer depends on another question still open in this round belongs to a *later* round, not this one.
|
|
12
|
+
|
|
13
|
+
Finding *facts* is your job, never the user's. When a frontier question needs a fact from the environment (filesystem, tools, etc.), dispatch a sub-agent to find it — don't ask the user for anything you could look up yourself. Don't block on it: a running exploration is an unsettled prerequisite, so only the questions downstream of it wait for the sub-agent to report — ask the rest of the frontier now. The *decisions* are the user's — put each to them and wait.
|
|
14
|
+
|
|
15
|
+
The session is done when the frontier is empty: every branch of the design tree visited, nothing left silently assumed. Do not act on it until the user confirms you have reached a shared understanding.
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: grilling
|
|
3
|
+
description: Grill the user relentlessly about a plan, decision, or idea. Use when the user wants to stress-test their thinking, or uses any 'grill' trigger phrases.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Interview me relentlessly about every aspect of this until we reach a shared understanding. Walk down each branch of the decision tree, resolving dependencies between decisions one-by-one. For each question, provide your recommended answer.
|
|
7
|
+
|
|
8
|
+
Ask the questions one at a time, waiting for feedback on each question before continuing. Asking multiple questions at once is bewildering.
|
|
9
|
+
|
|
10
|
+
If a *fact* can be found by exploring the environment (filesystem, tools, etc.), look it up rather than asking me. The *decisions*, though, are mine — put each one to me and wait for my answer.
|
|
11
|
+
|
|
12
|
+
Do not act on it until I confirm we have reached a shared understanding.
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: review-pipeline
|
|
3
|
+
description: Optional focused post-implementation review routing. Use only when the user requests review or the changed surface has a clear specialist evidence need that direct diff inspection and the smallest relevant check cannot cover. Never creates an automatic review swarm.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Review Pipeline
|
|
7
|
+
|
|
8
|
+
## Goal
|
|
9
|
+
|
|
10
|
+
Obtain the minimum additional review evidence needed for a specific risk.
|
|
11
|
+
|
|
12
|
+
## Trigger
|
|
13
|
+
|
|
14
|
+
Use only when:
|
|
15
|
+
|
|
16
|
+
- the user asks for review; or
|
|
17
|
+
- a specialist capability is required for a concrete unresolved risk.
|
|
18
|
+
|
|
19
|
+
Direct ROSE diff inspection and the smallest relevant check are the default. Multi-file work alone does not trigger this skill.
|
|
20
|
+
|
|
21
|
+
Near misses: implementation completion, SHIP wording, a pending merge, test failures, or broad quality concerns without one review question do not trigger routing. `code-review-and-quality` may be the primary loop for an explicit direct review; use this pipeline only when the current intent is specifically specialist review routing.
|
|
22
|
+
|
|
23
|
+
ROSE/`aili-delivery-flow` owns lifecycle state, approvals, repairs, verification, and final judgment. This skill runs one bounded routing pass and does not invoke another process skill; it returns any missing capability or material delta to ROSE. Canonical approval and claim-matched verification rules win.
|
|
24
|
+
|
|
25
|
+
## Method
|
|
26
|
+
|
|
27
|
+
1. Name the unresolved review question.
|
|
28
|
+
2. Resolve one repository/cwd and applicable target rules. For A33, reference one current `WT-001` context, keep artifacts in the owning repository, disclose the shared-trust soft boundary, and do not scan the host broadly.
|
|
29
|
+
3. Choose at most one auxiliary specialist capability after the proactive delegation scan. Dispatch when its Task trigger is met. Default concurrency is at most two but is not a hard cap; larger bounded fan-out requires independent non-overlapping contexts, concrete benefit, suitable owners, and an explicit join plan.
|
|
30
|
+
4. Send the compact packet from `subagent-task-packet.md` and require the canonical result/finding envelope in `subagent-result.md`.
|
|
31
|
+
5. Inspect their evidence and resolve only the named question without voting.
|
|
32
|
+
6. If a blocking issue is fixed, run one targeted recheck. Stop after that and report any remaining blocker.
|
|
33
|
+
|
|
34
|
+
Do not automatically fan out code, test, security, coverage, AI, silent-failure, convergence, browser, or E2E lanes. Do not create a fixed multi-cycle repair loop.
|
|
35
|
+
|
|
36
|
+
## Result
|
|
37
|
+
|
|
38
|
+
Report the reviewed scope, evidence, blocking findings, skipped specialist checks, freshness, and remaining `Unverified` risks. ROSE owns the final judgment. A33 results reference rather than duplicate or rebind WT identity, keys, approvals, Git state, rules, or command/cwd.
|
|
@@ -0,0 +1,210 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: rose-memory
|
|
3
|
+
description: Use the legacy/pre-runtime ROSE project-local SQLite continuity backend through memory_cli.py for scoped user facts, checkpoints, candidates, and focused retrieval; never treat it as native/global memory or formal authority.
|
|
4
|
+
license: MIT
|
|
5
|
+
metadata:
|
|
6
|
+
tool: references/memory_cli.py
|
|
7
|
+
state: project-local memory/memory.db
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# ROSE Memory
|
|
11
|
+
|
|
12
|
+
## Purpose
|
|
13
|
+
|
|
14
|
+
This skill provides the legacy/pre-runtime ROSE continuity protocol and bundled SQLite CLI. It is project-local compatibility infrastructure, not native backend memory, global state, or formal lifecycle authority.
|
|
15
|
+
|
|
16
|
+
The CLI implementation is distributed with this skill:
|
|
17
|
+
|
|
18
|
+
`references/memory_cli.py` from the active Skill root resolved by the current adapter.
|
|
19
|
+
|
|
20
|
+
The memory database is always the exact project-local path, resolved from the canonical project root:
|
|
21
|
+
|
|
22
|
+
`memory/memory.db`
|
|
23
|
+
|
|
24
|
+
Never store project memory inside a global backend configuration directory.
|
|
25
|
+
|
|
26
|
+
## When to Use
|
|
27
|
+
|
|
28
|
+
Use this skill when:
|
|
29
|
+
|
|
30
|
+
- starting or resuming a ROSE task
|
|
31
|
+
- checking current ROSE memory status
|
|
32
|
+
- recording a scoped task checkpoint or completion receipt
|
|
33
|
+
- default-writing an explicit user-stated requirement, preference, decision, correction, or acceptance criterion when identity, scope, metadata, permission, and content safety are clear
|
|
34
|
+
- recording evidence-backed model-derived material only as a candidate when the existing backend supports that exact operation
|
|
35
|
+
- retrieving focused project memory as one bounded input during explicit resume
|
|
36
|
+
- recovering from interrupted work
|
|
37
|
+
|
|
38
|
+
## Rules
|
|
39
|
+
|
|
40
|
+
- Never edit `memory/memory.db` manually.
|
|
41
|
+
- Never create `memory.md`, JSON sidecars, or alternate memory state files.
|
|
42
|
+
- Never store project state under a backend configuration home.
|
|
43
|
+
- Invoke only the existing `rose-memory` shim or the adapter-resolved bundled `references/memory_cli.py`, always with the literal project-relative argument `--db memory/memory.db` from the canonical project root. Reject an absolute, user-supplied, alternate, parent-relative, aliased, or manual database path. If `memory/memory.db` or a path component is presented as a symlink, stop without following it; do not substitute another path.
|
|
44
|
+
- Memory is additive, scoped continuity context. It is never the active OpenSpec contract, test-plan acceptance, permission, Git truth, review verdict, or completion proof.
|
|
45
|
+
- Default-write only explicit, reusable user requirements, preferences, corrections, decisions, and acceptance criteria when project/change/session identity, source reference/type, CLI timestamp, permission, and content safety are clear. Use only the existing `text`, `source`, `project`, session/task identity, timestamp, and receipt behavior. Do not ask a redundant per-fact write question in that safe case.
|
|
46
|
+
- If identity, scope, required metadata, or permission is ambiguous, ask one focused scope/identity question or keep the item in the active change artifact; do not create an unscoped record.
|
|
47
|
+
- Before invoking the CLI, reject or rewrite to a safely redacted existing-field value any text containing an embedded token, private key, credentialed URL, cookie, credential, private user data, or ambiguous sensitive content. Ambiguous permission blocks the write. Sensitive bytes must not appear in CLI arguments, memory, a receipt, or a new field; retain only a non-sensitive outcome/reference when useful.
|
|
48
|
+
- This policy does not add a command, field, schema, migration, storage path, or storage hardening. Existing backend file-mode enforcement, backend symlink handling, and retention behavior remain `Unverified`.
|
|
49
|
+
- Ordinary one-turn or report-only work that neither opens nor uses memory and has no formal long-running, resume, or context-loss need writes no session/task start or completion receipt by default. A missing receipt in that case is not a continuity failure.
|
|
50
|
+
- Active formal long-running, resume, or context-loss work, and any current task that actually opens or uses memory, records the applicable scoped checkpoint/completion receipt with current evidence references. The receipt remains navigation/evidence metadata and never establishes contract, permission, Git truth, verification, or completion.
|
|
51
|
+
- Model-derived repository facts, patterns, risks, review findings, history/log observations, and procedural rules are not user facts. Keep them as evidence-backed candidates or change-local `Unverified` items. If the existing CLI cannot represent the exact candidate lifecycle, keep the item in the appropriate change artifact instead of inventing a command, schema, or bridge.
|
|
52
|
+
- Memory does not depend on DCP, compression thresholds, stale chat, or old logs. None of those sources has active-task authority.
|
|
53
|
+
- If memory writeback fails, retry once when the fix is obvious. If it still fails, continue safe task progress, keep a pending TodoWrite item for memory writeback, retry before final handoff, and report any remaining failure.
|
|
54
|
+
- If the current directory is not inside a project, stop and report `SETUP_BLOCKED_NO_PROJECT_ROOT`.
|
|
55
|
+
- 🔴 CHECKPOINT: before any promotion, confirm the existing backend supports the exact candidate/promotion operation and that the item is scoped, reusable, evidence-backed, non-secret, and not contradicted by the active formal contract or current user instruction. Otherwise use `--no-durable-memory-promoted` and keep the item in change-local evidence or mark it `Unverified`.
|
|
56
|
+
|
|
57
|
+
## Memory Layers
|
|
58
|
+
|
|
59
|
+
Task checkpoint:
|
|
60
|
+
- Goal, scope, progress, files touched, and verification evidence.
|
|
61
|
+
- Use for deliberate checkpoint/resume continuity; `progress.txt` remains the current execution ledger for a formal change.
|
|
62
|
+
|
|
63
|
+
Requirement memory:
|
|
64
|
+
- User-stated requirements, preferences, corrections, decisions, and acceptance criteria.
|
|
65
|
+
- This is the only default-write layer, and only under the scope/metadata/permission/security gates above.
|
|
66
|
+
|
|
67
|
+
Candidate:
|
|
68
|
+
- Model-derived facts or rules with explicit evidence links, never disguised as user facts.
|
|
69
|
+
- Candidate status does not make the item authoritative. Do not promote when support or evidence is uncertain.
|
|
70
|
+
|
|
71
|
+
Conflict rule:
|
|
72
|
+
- Current user instruction and the active formal contract govern the task; fresh filesystem/Git/review/verification evidence governs current state.
|
|
73
|
+
- Memory, handoff, chat summaries, old logs, and task checkboxes are navigation/context only.
|
|
74
|
+
- If memory suggests a conflict that changes the next action, surface it before acting.
|
|
75
|
+
|
|
76
|
+
Conflict next-action table:
|
|
77
|
+
|
|
78
|
+
| Conflict found | Next action |
|
|
79
|
+
|---|---|
|
|
80
|
+
| Current user instruction or active OpenSpec contract conflicts with memory | Follow the current authority; do not promote the stale memory. |
|
|
81
|
+
| Chat summary, old log, or task checkbox claims completion | Re-read the contract, progress, bounded drift, root/Git identity, and fresh verification; do not infer completion. |
|
|
82
|
+
| Memory claims lack evidence | Treat as context only; mark `[UNVERIFIED]` and avoid durable promotion. |
|
|
83
|
+
| Memory contains possible secret, raw log, or credential | Do not repeat or store it; report a redacted concern. |
|
|
84
|
+
| Conflict changes what you would do next | Stop and ask or state the conflict before acting. |
|
|
85
|
+
|
|
86
|
+
## Command
|
|
87
|
+
|
|
88
|
+
If a short shim exists, use it:
|
|
89
|
+
|
|
90
|
+
```bash
|
|
91
|
+
rose-memory --help
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
If the shim is unavailable and the active adapter resolves the Skill root, call the bundled tool directly:
|
|
95
|
+
|
|
96
|
+
```bash
|
|
97
|
+
python <skill-root>/references/memory_cli.py --help
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
For every example below, replace `rose-memory` with `python <skill-root>/references/memory_cli.py` when no shim exists.
|
|
101
|
+
|
|
102
|
+
## Standard Operations
|
|
103
|
+
|
|
104
|
+
Initialize project memory:
|
|
105
|
+
|
|
106
|
+
```bash
|
|
107
|
+
mkdir -p memory
|
|
108
|
+
rose-memory init --db memory/memory.db
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
Check health:
|
|
112
|
+
|
|
113
|
+
```bash
|
|
114
|
+
rose-memory doctor --db memory/memory.db --record
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
Start a session:
|
|
118
|
+
|
|
119
|
+
```bash
|
|
120
|
+
rose-memory session start --db memory/memory.db --session-key "<session-key>"
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
Start a task:
|
|
124
|
+
|
|
125
|
+
```bash
|
|
126
|
+
rose-memory task start --db memory/memory.db --session-key "<session-key>" --title "<task summary>"
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
Use session/task start and later checkpoint/completion operations only for the receipt-triggering cases above. Do not run them merely because an ordinary task started or ended.
|
|
130
|
+
|
|
131
|
+
Record an event checkpoint:
|
|
132
|
+
|
|
133
|
+
```bash
|
|
134
|
+
rose-memory event add --db memory/memory.db --event-type CHECKPOINT --state ACTIVE --summary "<summary>"
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
Record a structured task checkpoint:
|
|
138
|
+
|
|
139
|
+
```bash
|
|
140
|
+
rose-memory checkpoint \
|
|
141
|
+
--db memory/memory.db \
|
|
142
|
+
--goal "<goal>" \
|
|
143
|
+
--scope "<scope>" \
|
|
144
|
+
--progress "<progress>" \
|
|
145
|
+
--file "<path>" \
|
|
146
|
+
--evidence-ref "<file/command/result>"
|
|
147
|
+
```
|
|
148
|
+
|
|
149
|
+
Record requirement memory:
|
|
150
|
+
|
|
151
|
+
```bash
|
|
152
|
+
rose-memory remember-requirement \
|
|
153
|
+
--db memory/memory.db \
|
|
154
|
+
--text "<user requirement/preference/correction/decision>" \
|
|
155
|
+
--source "user:conversation:<message-reference>" \
|
|
156
|
+
--project "<canonical-project>" \
|
|
157
|
+
--session-key "<session-key>" \
|
|
158
|
+
--task-key "<change-or-task-key>"
|
|
159
|
+
```
|
|
160
|
+
|
|
161
|
+
The CLI records its timestamp. Run this only when the arguments above represent the required project/change/session scope; otherwise keep the item in the active change artifact and resolve scope first.
|
|
162
|
+
|
|
163
|
+
Retrieve memory context:
|
|
164
|
+
|
|
165
|
+
```bash
|
|
166
|
+
rose-memory pack --db memory/memory.db "<query>" --mode direct --budget 800
|
|
167
|
+
rose-memory search --db memory/memory.db "<query>" --limit 10
|
|
168
|
+
```
|
|
169
|
+
|
|
170
|
+
Retrieve the focused current-task pack:
|
|
171
|
+
|
|
172
|
+
```bash
|
|
173
|
+
rose-memory pack-current --db memory/memory.db --task-key "<task>" --budget 1200
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
During explicit resume, use `pack-current` only as one scoped hydration input after resolving the active project/change/task. Re-read the active OpenSpec contract, `progress.txt`, bounded `drift-log.md`, root/Git state, and fresh review/verification evidence before acting:
|
|
177
|
+
|
|
178
|
+
```bash
|
|
179
|
+
rose-memory pack \
|
|
180
|
+
--db memory/memory.db \
|
|
181
|
+
"current active task requirements decisions evidence" \
|
|
182
|
+
--mode direct \
|
|
183
|
+
--budget 1200
|
|
184
|
+
```
|
|
185
|
+
|
|
186
|
+
Complete a task with no durable memory promoted:
|
|
187
|
+
|
|
188
|
+
```bash
|
|
189
|
+
rose-memory complete --db memory/memory.db --summary "<completion summary>" --no-durable-memory-promoted
|
|
190
|
+
```
|
|
191
|
+
|
|
192
|
+
Most completions should include `--no-durable-memory-promoted`. Any model-derived architecture fact, project finding, or procedural rule must first remain an evidence-backed candidate and follow the existing explicit candidate/promotion workflow; never promote it directly as requirement memory or invent a promotion path.
|
|
193
|
+
|
|
194
|
+
## Success Signal
|
|
195
|
+
|
|
196
|
+
A memory write succeeds only when the CLI returns JSON containing:
|
|
197
|
+
|
|
198
|
+
- `ok: true`
|
|
199
|
+
- `receipt_id`
|
|
200
|
+
- `result` with the operation-specific payload
|
|
201
|
+
|
|
202
|
+
If the receipt is missing, treat the operation as failed and do not claim writeback completion.
|
|
203
|
+
|
|
204
|
+
A valid receipt proves only that the existing CLI reported that scoped operation. It grants no authority over the active contract, permissions, Git/filesystem state, verification, or task completion.
|
|
205
|
+
|
|
206
|
+
## References
|
|
207
|
+
|
|
208
|
+
- `references/memory_cli.py` - executable memory CLI
|
|
209
|
+
- `references/schema.sql` - current SQLite schema emitted by the CLI
|
|
210
|
+
- `references/README.md` - operator notes for global install and project-local state
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# ROSE Memory References
|
|
2
|
+
|
|
3
|
+
This directory is distributed with the `rose-memory` skill. The CLI is a legacy/pre-runtime compatibility tool; all state remains project-local and has no native/global or formal lifecycle authority.
|
|
4
|
+
|
|
5
|
+
Files:
|
|
6
|
+
|
|
7
|
+
- `memory_cli.py` - the only supported interface for schema creation, migrations, reads, writes, receipts, checkpoints, requirement memory, evidence, findings, and retrieval packs.
|
|
8
|
+
- `schema.sql` - the current SQLite schema emitted by `memory_cli.py` for review and auditing.
|
|
9
|
+
|
|
10
|
+
State boundary:
|
|
11
|
+
|
|
12
|
+
- Global skill directory: tool and protocol only.
|
|
13
|
+
- Project directory: `memory/memory.db` state only.
|
|
14
|
+
|
|
15
|
+
Do not store `memory.db` in this directory. Do not edit SQLite rows manually.
|
|
16
|
+
|
|
17
|
+
Memory policy:
|
|
18
|
+
|
|
19
|
+
- Default-write only explicit user-stated requirements, preferences, decisions, corrections, and acceptance criteria when identity, project/change/session scope, source metadata, timestamp, permission, and content safety are clear.
|
|
20
|
+
- Use only the existing `text`, `source`, `project`, session/task identity, CLI timestamp, and receipt behavior; do not add a field, command, schema, migration, or storage path.
|
|
21
|
+
- Block or keep the item in the active change artifact when scope, metadata, identity, or permission is ambiguous. Before CLI invocation, reject or safely redact embedded tokens, private keys, credentialed URLs, cookies, credentials, private user data, and ambiguous sensitive content so no sensitive bytes enter CLI arguments, memory, or receipts.
|
|
22
|
+
- Invoke only the existing shim or bundled CLI from the canonical project root with literal `--db memory/memory.db`. Reject absolute, alternate, parent-relative, user-supplied, manual, aliased, or symlink database paths without following them.
|
|
23
|
+
- Ordinary one-turn/report-only work with no actual memory use and no formal long-running/resume/context-loss boundary writes no start/end receipt. Formal long-running/resume/context-loss work or actual current-task memory use requires the applicable scoped checkpoint/completion receipt.
|
|
24
|
+
- A receipt is operation evidence only, never contract, permission, Git truth, verification, or completion authority.
|
|
25
|
+
- Use checkpoints as bounded continuity input. Formal `progress.txt`, OpenSpec artifacts, fresh Git/filesystem state, and fresh verification retain their own authority.
|
|
26
|
+
- Keep model-derived facts as evidence-backed candidates or change-local `Unverified` items. Do not invent storage operations when the current CLI cannot represent the required lifecycle.
|
|
27
|
+
- DCP, compression thresholds, stale chat summaries, task checkboxes, and old logs have no active-task authority.
|
|
28
|
+
- Do not import, migrate, dual-read, dual-write, or bridge this database to native/global or reserved `.aili` state.
|
|
29
|
+
- Memory writeback failure should be retried once, tracked, retried before handoff, and reported if still failing; it should not block otherwise safe task progress.
|
|
30
|
+
- Backend file-mode enforcement, backend symlink handling, and retention remain `Unverified`; this routing/default-write policy makes no broader storage-hardening claim.
|
|
31
|
+
|
|
32
|
+
If a `rose-memory` command is available:
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
rose-memory doctor --db memory/memory.db --record
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
Direct fallback:
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
python ~/.agents/skills/rose-memory/references/memory_cli.py doctor --db memory/memory.db --record
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
Focused current-task pack:
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
rose-memory pack-current --db memory/memory.db --budget 1200
|
|
48
|
+
```
|