@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
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Rosetears contributors
|
|
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.
|
package/README.md
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
# AILI for Pi
|
|
2
|
+
|
|
3
|
+
`@rosetears/aili-pi` is a Pi Package that adds ROSE delivery routing, five workflow prompts, a pinned AILI skill snapshot, native Pi integrations, and diagnostics to the official `pi` CLI. It does not replace or fork Pi.
|
|
4
|
+
|
|
5
|
+
## Requirements
|
|
6
|
+
|
|
7
|
+
- Linux
|
|
8
|
+
- Node.js 22.19.0 or newer
|
|
9
|
+
- Pi 0.81.1 or newer with the Package and Extension APIs used by this release
|
|
10
|
+
|
|
11
|
+
macOS and native Windows are not supported by this bootstrap and fail before installation mutation. Theme, TUI, and font resources are deferred to a separate change.
|
|
12
|
+
|
|
13
|
+
## Install
|
|
14
|
+
|
|
15
|
+
Run the repository bootstrap:
|
|
16
|
+
|
|
17
|
+
```sh
|
|
18
|
+
./install.sh
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
If Pi is absent, the script downloads only `https://pi.dev/install.sh` over HTTPS and executes it with your user authority. The upstream “latest installer” is trusted through ordinary TLS because no accepted checksum/signature mechanism is currently available. Review that boundary before use in a sensitive environment.
|
|
22
|
+
|
|
23
|
+
The script preserves an existing compatible Pi by default. To request Pi's own self-update first:
|
|
24
|
+
|
|
25
|
+
```sh
|
|
26
|
+
./install.sh --update-pi
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
Equivalent package lifecycle commands:
|
|
30
|
+
|
|
31
|
+
```sh
|
|
32
|
+
pi install npm:@rosetears/aili-pi@latest
|
|
33
|
+
pi list
|
|
34
|
+
pi update npm:@rosetears/aili-pi
|
|
35
|
+
pi remove npm:@rosetears/aili-pi
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
Removal is destructive for this Package. It does not remove Pi and must not be presented as rollback when replacing a pre-existing AILI installation.
|
|
39
|
+
|
|
40
|
+
### Explicit global resources
|
|
41
|
+
|
|
42
|
+
The package does not write global AILI resources during extension load. After reviewing the target, explicitly run:
|
|
43
|
+
|
|
44
|
+
```text
|
|
45
|
+
/aili-install-global-resources
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
That command creates or updates only the AILI marker block in `~/.pi/agent/APPEND_SYSTEM.md` and installs the 19 packaged profiles at `~/.pi/agent/agents/aili/`. It preserves unrelated prompt content, rejects malformed markers or an unowned profile collision, and reports stale profiles without pruning them.
|
|
49
|
+
|
|
50
|
+
## Commands and modes
|
|
51
|
+
|
|
52
|
+
- `/ideate`, `/define`, `/build`, `/ship`: the four AILI delivery modes.
|
|
53
|
+
- `/local-review`: a standalone local audit, not a fifth lifecycle mode.
|
|
54
|
+
- `/aili-doctor` or `/aili-doctor --json`: human or machine-readable health evidence.
|
|
55
|
+
- `/perm`: upstream `pi-permission-modes` control for `Default`, `Plan`, `Build`, and `YOLO`.
|
|
56
|
+
- `Alt+M`: upstream mode-cycle shortcut.
|
|
57
|
+
- `/aili-install-global-resources`: explicit installation/update of marker-owned global ROSE and AILI-role resources.
|
|
58
|
+
|
|
59
|
+
`pi-permission-modes` owns mode persistence, prompts, and sandbox behavior. A Linux disposable fixture verified its stock Build profile through installed Bubblewrap, while an incompatible Git-worktree fixture visibly fell back to confirmation. This is not an isolation guarantee. `YOLO` is an upstream unrestricted mode and must be treated accordingly.
|
|
60
|
+
|
|
61
|
+
## Native integrations and side effects
|
|
62
|
+
|
|
63
|
+
- `pi-web-access@0.13.0` provides its complete upstream web-search, content-fetch, curator, clone/PDF/video, and bundled-skill surface. Its provider fallback, network traffic, config/credential paths, clone cache, temporary curator service, downloads, and optional browser-cookie access are upstream behavior; inspect its tool requests and configuration before use.
|
|
64
|
+
- `pi-quota-status@0.3.0` is enabled by default. It may maintain `~/.pi/agent/pi-quota-status/state.json`; `/quota config` creates its configuration template.
|
|
65
|
+
- `pi-permission-modes@2.2.0` provides the permission UI and sandbox degradation behavior above. AILI does not retain `/aili-mode` or `Ctrl+Shift+Alt+A` as competing controls.
|
|
66
|
+
- `@agwab/pi-subagent@0.4.8` owns child spawn, cancellation, JSONL handling, and artifacts. AILI adds only role/tool/path policy projection, a two-child ceiling, and structured-result normalization. AILI children do not expose resume, worktree, background, recursive dispatch, or automatic retry.
|
|
67
|
+
|
|
68
|
+
## Optional capability packs
|
|
69
|
+
|
|
70
|
+
The core package does not install optional providers automatically.
|
|
71
|
+
|
|
72
|
+
- `web-research`: public web retrieval and source verification.
|
|
73
|
+
- `browser-qa`: browser-rendered inspection.
|
|
74
|
+
- `artifact-runtime`: durable artifacts and format transformations.
|
|
75
|
+
- `project-memory`: project-local durable memory after a separate project contract.
|
|
76
|
+
|
|
77
|
+
When unavailable, runtime and doctor output use explicit `SKIP`/`WARN` results and must not claim the work ran. Enable guidance and side effects are recorded in `manifests/capabilities.json`.
|
|
78
|
+
|
|
79
|
+
## Security boundary
|
|
80
|
+
|
|
81
|
+
AILI adds role/tool/path projection and structured-result redaction around the native integrations. Vendor permission and sandbox behavior remains vendor-owned. Neither AILI nor Pi provides a universal OS sandbox: trusted extensions, user-authority processes, ambient network access, and filesystem races remain in the user trust domain. Inspect exact approval targets and do not put credentials in task text.
|
|
82
|
+
|
|
83
|
+
Child roles are fresh, single-use processes with no resume, chaining, background continuation, recursive delegation, or automatic retry. At most two child processes run concurrently. Output and diagnostics are bounded and redacted; provider/model behavior still depends on the configured Pi environment.
|
|
84
|
+
|
|
85
|
+
## Provenance and reproducibility
|
|
86
|
+
|
|
87
|
+
- `upstream/aili-workflows.lock.json` pins the exact canonical 64-skill/471-file snapshot.
|
|
88
|
+
- `manifests/skill-compatibility.json` records one compatibility state per skill.
|
|
89
|
+
- `manifests/roles.json` records the 19 generated Pi role profiles.
|
|
90
|
+
- `manifests/provenance.json`, `manifests/sbom.json`, and `THIRD_PARTY_NOTICES.md` record adapted/reference sources and the exact npm lock inventory.
|
|
91
|
+
|
|
92
|
+
Verify generated artifacts with:
|
|
93
|
+
|
|
94
|
+
```sh
|
|
95
|
+
npm run validate:generated
|
|
96
|
+
npm run validate:provenance
|
|
97
|
+
npm run validate:release
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
## Troubleshooting
|
|
101
|
+
|
|
102
|
+
- **Unsupported Pi version/API:** update Pi explicitly, then rerun the bootstrap. The script fails before AILI mutation when preflight cannot prove compatibility.
|
|
103
|
+
- **Package install failure:** keep the reported Pi/AILI states distinct. Retry the printed `pi install` command after fixing the cause; do not automatically remove a pre-existing package.
|
|
104
|
+
- **Doctor is non-pass:** inspect the exact `ERROR`, `WARN`, `SKIP`, or `UNVERIFIED` component. Missing optional packs are not core execution success.
|
|
105
|
+
- **Permission shortcut does nothing:** use `/perm`; terminal multiplexers may consume `Alt+M`.
|
|
106
|
+
- **Global resources are non-pass:** run `/aili-install-global-resources` only after reviewing the exact `~/.pi/agent/` targets. A malformed marker or an unowned role collision intentionally leaves files unchanged.
|
|
107
|
+
- **Offline use:** the installed Package embeds the pinned skills and does not fetch `aili-workflows` at runtime. First-time Pi/package installation still requires the relevant package sources.
|
|
108
|
+
|
|
109
|
+
See `THIRD_PARTY_NOTICES.md` for source and license details. No official endorsement by the Pi maintainers is claimed.
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
# Third-Party Notices
|
|
2
|
+
|
|
3
|
+
This distribution is MIT-licensed. The following adapted sources and locked development/runtime dependencies retain their own license terms.
|
|
4
|
+
|
|
5
|
+
## aili-workflows
|
|
6
|
+
|
|
7
|
+
- Status: adapted
|
|
8
|
+
- Source: https://github.com/Rosetears520/aili-workflows.git
|
|
9
|
+
- Revision: 7eb35f357ad489f5841ee10dac1e44549c1bdb76
|
|
10
|
+
- Version: 0.2.7
|
|
11
|
+
- License: MIT
|
|
12
|
+
- Source files: upstream/aili-workflows.lock.json#files (471 exact skill files), manifests/roles.json#records[].sourcePath (19 exact role source files)
|
|
13
|
+
- Reused symbols/patterns: 64 canonical skill bodies and owned assets, 19 child-role prompt bodies
|
|
14
|
+
- Local changes: skills/** is an exact byte-for-byte snapshot with no semantic overlay; role prompts are generated as Pi frontmatter with explicit tool/capability ceilings and structured output
|
|
15
|
+
|
|
16
|
+
## @agwab/pi-subagent
|
|
17
|
+
|
|
18
|
+
- Status: dependency
|
|
19
|
+
- Source: https://github.com/AgwaB/pi-subagent.git
|
|
20
|
+
- Revision: daa7b83819116a62008ad17aa65fcd50fefbafd0
|
|
21
|
+
- Version: 0.4.8
|
|
22
|
+
- License: MIT
|
|
23
|
+
- Source files: src/api.ts, src/runners/headless-model.ts, src/artifacts/result.ts
|
|
24
|
+
- Reused symbols/patterns: runSubagent API, headless lifecycle, artifact envelope
|
|
25
|
+
- Local changes: AILI calls the pinned API through a thin role/path/tool policy adapter; no upstream source is copied
|
|
26
|
+
|
|
27
|
+
## pi-permission-modes
|
|
28
|
+
|
|
29
|
+
- Status: dependency
|
|
30
|
+
- Source: https://github.com/wynainfo/pi-permission-modes.git
|
|
31
|
+
- Revision: 23d65d10a53b67043cae42322acf9044d6edb196
|
|
32
|
+
- Version: 2.2.0
|
|
33
|
+
- License: MIT
|
|
34
|
+
- Source files: src/index.ts, permission-mode.defaults.json
|
|
35
|
+
- Reused symbols/patterns: Default/Plan/Build/YOLO, /perm, Alt+M, sandbox degradation
|
|
36
|
+
- Local changes: AILI initializes the pinned upstream extension and does not retain a competing AILI mode command or shortcut
|
|
37
|
+
|
|
38
|
+
## pi-quota-status
|
|
39
|
+
|
|
40
|
+
- Status: dependency
|
|
41
|
+
- Source: https://github.com/hafiezul/pi-quota-status.git
|
|
42
|
+
- Revision: 742b3e40b88fbf3d5dcd9d39af96d37bd26bb436
|
|
43
|
+
- Version: 0.3.0
|
|
44
|
+
- License: MIT
|
|
45
|
+
- Source files: src/index.ts, src/paths.ts
|
|
46
|
+
- Reused symbols/patterns: quota footer, /quota, global state maintenance
|
|
47
|
+
- Local changes: AILI initializes the pinned upstream extension; upstream owns quota polling and state files
|
|
48
|
+
|
|
49
|
+
## pi-web-access
|
|
50
|
+
|
|
51
|
+
- Status: dependency
|
|
52
|
+
- Source: https://github.com/ttttmr/pi-web-access.git
|
|
53
|
+
- Revision: npm:0.13.0
|
|
54
|
+
- Version: 0.13.0
|
|
55
|
+
- License: MIT
|
|
56
|
+
- Source files: index.ts, skills/
|
|
57
|
+
- Reused symbols/patterns: web_search, fetch_content, get_search_content, curator and bundled librarian skill
|
|
58
|
+
- Local changes: AILI initializes the complete pinned upstream surface through its sole Extension entry; no upstream source is copied
|
|
59
|
+
|
|
60
|
+
## npm dependency inventory
|
|
61
|
+
|
|
62
|
+
The exact 350-entry package-lock inventory, versions, integrity values, dependency scope, and declared licenses is recorded in `manifests/sbom.json`.
|
|
63
|
+
|
|
64
|
+
Runtime dependencies are initialized through the single AILI Extension entry; no third-party source tree is copied into this package.
|
package/install.sh
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"records": [
|
|
4
|
+
{
|
|
5
|
+
"capability": "repo.read",
|
|
6
|
+
"status": "native",
|
|
7
|
+
"owner": "@earendil-works/pi-coding-agent@0.81.1",
|
|
8
|
+
"sourceRevision": "7eb35f357ad489f5841ee10dac1e44549c1bdb76",
|
|
9
|
+
"verification": [
|
|
10
|
+
"vitest run tests/integration/extension-load.test.ts",
|
|
11
|
+
"vitest run tests/unit/permissions.test.ts"
|
|
12
|
+
],
|
|
13
|
+
"artifacts": [
|
|
14
|
+
{ "path": "package-lock.json", "sha256": "9198e65c8343ddc8eccc5533b4ac5707c482b7e19d6e2724d2a6839150ca7c4f" },
|
|
15
|
+
{ "path": "tests/integration/extension-load.test.ts", "sha256": "1e27e98a557d6d4f77e21f945052d7ec3283564b8df84594cbf0169d4912c828" },
|
|
16
|
+
{ "path": "tests/unit/permissions.test.ts", "sha256": "8c12d4c3fc37e8cefbc5e8c56bea0a74dd04ac2541383c36b4fd6f04b38798bd" }
|
|
17
|
+
]
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"capability": "subagent.dispatch",
|
|
21
|
+
"status": "adapted",
|
|
22
|
+
"owner": "src/runtime/subagents.ts",
|
|
23
|
+
"sourceRevision": "7eb35f357ad489f5841ee10dac1e44549c1bdb76",
|
|
24
|
+
"verification": [
|
|
25
|
+
"npm run verify:roles",
|
|
26
|
+
"vitest run tests/unit/roles.test.ts tests/unit/subagents.test.ts",
|
|
27
|
+
"vitest run tests/unit/permissions.test.ts",
|
|
28
|
+
"AILI_LIVE_SUBAGENT_PROBE=static npx vitest run tests/integration/live-subagent.test.ts",
|
|
29
|
+
"AILI_LIVE_SUBAGENT_PROBE=1 npx vitest run tests/integration/live-subagent.test.ts"
|
|
30
|
+
],
|
|
31
|
+
"artifacts": [
|
|
32
|
+
{ "path": "src/runtime/subagents.ts", "sha256": "e0fa58c32cc052c938e9817be69059f7fbceaf1718a6446d6395c8d0abdd2789" },
|
|
33
|
+
{ "path": "src/runtime/child-guard.ts", "sha256": "687d238a1ef24f215b11e967d1d56b172569c334294278186df2dee02b54a543" },
|
|
34
|
+
{ "path": "src/runtime/permissions.ts", "sha256": "20c4404d893cc30733fde5a69fb4f6cf1458f08cae18ab8c8095127b6ef27dc9" },
|
|
35
|
+
{ "path": "tests/unit/subagents.test.ts", "sha256": "3028298f7e392dfb7bffc119de0a8c00f252618f1c18f4fa17f392e003773653" },
|
|
36
|
+
{ "path": "tests/unit/child-guard.test.ts", "sha256": "6319952f5dd3eab025788f155bdb558317ebca7f686a2373c90a3c0f15f4dbcb" },
|
|
37
|
+
{ "path": "tests/unit/permissions.test.ts", "sha256": "8c12d4c3fc37e8cefbc5e8c56bea0a74dd04ac2541383c36b4fd6f04b38798bd" },
|
|
38
|
+
{ "path": "tests/unit/roles.test.ts", "sha256": "72b61af16ff66506aaaceac28c92d8b3756741e3c4df0544686b3d4940215b57" },
|
|
39
|
+
{ "path": "scripts/sync-roles.ts", "sha256": "a0abb655b7df270019a674b56a38bbadcfe3d6dc2599b17c04a2584f32c2d532" },
|
|
40
|
+
{ "path": "tests/integration/live-subagent.test.ts", "sha256": "dd4f546e2f2f04e6f8a9c0577320a7538089af6a319b5de4f10a36c891c81339" },
|
|
41
|
+
{ "path": "manifests/live-verification.json", "sha256": "6a4d6defd2d01c6a65acd558aeb1d1aa8c828777edd4273005aa9ff4392c7bd1" }
|
|
42
|
+
]
|
|
43
|
+
}
|
|
44
|
+
]
|
|
45
|
+
}
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"providers": [
|
|
4
|
+
"pi-core",
|
|
5
|
+
"aili-core",
|
|
6
|
+
"pi-web-access",
|
|
7
|
+
"pi-quota-status",
|
|
8
|
+
"pi-permission-modes",
|
|
9
|
+
"@agwab/pi-subagent",
|
|
10
|
+
"optional-pack:web-research",
|
|
11
|
+
"optional-pack:browser-qa",
|
|
12
|
+
"optional-pack:artifact-runtime"
|
|
13
|
+
],
|
|
14
|
+
"capabilities": [
|
|
15
|
+
{
|
|
16
|
+
"id": "repo.read",
|
|
17
|
+
"provider": "pi-core",
|
|
18
|
+
"adapterOwner": "pi-core",
|
|
19
|
+
"platforms": ["linux"],
|
|
20
|
+
"class": "required",
|
|
21
|
+
"risk": { "secret": "none", "network": "none", "sideEffect": "read-only" },
|
|
22
|
+
"probe": { "id": "pi.tools.read", "kind": "runtime-api", "timeoutMs": 1000 },
|
|
23
|
+
"dependentSkills": { "source": "manifests/skill-compatibility.json", "capability": "repo.read" }
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"id": "repo.write",
|
|
27
|
+
"provider": "pi-permission-modes",
|
|
28
|
+
"adapterOwner": "pi-permission-modes@2.2.0",
|
|
29
|
+
"platforms": ["linux"],
|
|
30
|
+
"class": "required",
|
|
31
|
+
"risk": { "secret": "possible", "network": "none", "sideEffect": "local-write" },
|
|
32
|
+
"probe": { "id": "aili.permissions.write", "kind": "runtime-component", "timeoutMs": 1000 },
|
|
33
|
+
"dependentSkills": { "source": "manifests/skill-compatibility.json", "capability": "repo.write" }
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"id": "subagent.dispatch",
|
|
37
|
+
"provider": "@agwab/pi-subagent",
|
|
38
|
+
"adapterOwner": "aili thin policy adapter over @agwab/pi-subagent/api@0.4.8",
|
|
39
|
+
"platforms": ["linux"],
|
|
40
|
+
"class": "required",
|
|
41
|
+
"risk": { "secret": "possible", "network": "provider-dependent", "sideEffect": "delegated" },
|
|
42
|
+
"probe": { "id": "aili.roles.dispatch", "kind": "runtime-component", "timeoutMs": 1000 },
|
|
43
|
+
"dependentSkills": { "source": "manifests/skill-compatibility.json", "capability": "subagent.dispatch" }
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"id": "memory.project",
|
|
47
|
+
"provider": "aili-core",
|
|
48
|
+
"adapterOwner": "project-memory",
|
|
49
|
+
"platforms": ["linux"],
|
|
50
|
+
"class": "optional",
|
|
51
|
+
"risk": { "secret": "possible", "network": "none", "sideEffect": "local-write" },
|
|
52
|
+
"probe": { "id": "aili.memory.project", "kind": "optional-pack", "timeoutMs": 1000 },
|
|
53
|
+
"dependentSkills": { "source": "manifests/skill-compatibility.json", "capability": "memory.project" },
|
|
54
|
+
"optionalPack": {
|
|
55
|
+
"id": "project-memory",
|
|
56
|
+
"missingBehavior": "Durable project memory is unavailable.",
|
|
57
|
+
"enableGuidance": "Enable only after a project-local memory contract is accepted.",
|
|
58
|
+
"sideEffects": ["project-local database writes"],
|
|
59
|
+
"futureOwner": "aili-pi"
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"id": "web.fetch",
|
|
64
|
+
"provider": "pi-web-access",
|
|
65
|
+
"adapterOwner": "pi-web-access@0.13.0",
|
|
66
|
+
"platforms": ["linux"],
|
|
67
|
+
"class": "required",
|
|
68
|
+
"risk": { "secret": "possible", "network": "provider-dependent", "sideEffect": "external-read-local-cache-and-process" },
|
|
69
|
+
"probe": { "id": "pi-web-access.extension", "kind": "extension-load", "timeoutMs": 1000 },
|
|
70
|
+
"dependentSkills": { "source": "manifests/skill-compatibility.json", "capability": "web.fetch" }
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"id": "browser.qa",
|
|
74
|
+
"provider": "optional-pack:browser-qa",
|
|
75
|
+
"adapterOwner": "optional-pack:browser-qa",
|
|
76
|
+
"platforms": ["linux"],
|
|
77
|
+
"class": "optional",
|
|
78
|
+
"risk": { "secret": "possible", "network": "possible", "sideEffect": "browser-process" },
|
|
79
|
+
"probe": { "id": "pack.browser-qa", "kind": "optional-pack", "timeoutMs": 1000 },
|
|
80
|
+
"dependentSkills": { "source": "manifests/skill-compatibility.json", "capability": "browser.qa" },
|
|
81
|
+
"optionalPack": {
|
|
82
|
+
"id": "browser-qa",
|
|
83
|
+
"missingBehavior": "Browser-rendered behavior cannot be inspected.",
|
|
84
|
+
"enableGuidance": "Install a separately accepted browser QA provider and browser runtime.",
|
|
85
|
+
"sideEffects": ["browser installation", "browser process", "possible network access"],
|
|
86
|
+
"futureOwner": "provider adapter"
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"id": "artifact.store",
|
|
91
|
+
"provider": "optional-pack:artifact-runtime",
|
|
92
|
+
"adapterOwner": "optional-pack:artifact-runtime",
|
|
93
|
+
"platforms": ["linux"],
|
|
94
|
+
"class": "optional",
|
|
95
|
+
"risk": { "secret": "possible", "network": "none", "sideEffect": "local-write" },
|
|
96
|
+
"probe": { "id": "pack.artifact-runtime.store", "kind": "optional-pack", "timeoutMs": 1000 },
|
|
97
|
+
"dependentSkills": { "source": "manifests/skill-compatibility.json", "capability": "artifact.store" },
|
|
98
|
+
"optionalPack": {
|
|
99
|
+
"id": "artifact-runtime",
|
|
100
|
+
"missingBehavior": "Durable artifact storage is unavailable.",
|
|
101
|
+
"enableGuidance": "Install only the artifact provider required by the accepted task.",
|
|
102
|
+
"sideEffects": ["local files", "possible toolchain installation"],
|
|
103
|
+
"futureOwner": "artifact provider adapter"
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"id": "artifact.transform",
|
|
108
|
+
"provider": "optional-pack:artifact-runtime",
|
|
109
|
+
"adapterOwner": "optional-pack:artifact-runtime",
|
|
110
|
+
"platforms": ["linux"],
|
|
111
|
+
"class": "optional",
|
|
112
|
+
"risk": { "secret": "possible", "network": "possible", "sideEffect": "process-and-write" },
|
|
113
|
+
"probe": { "id": "pack.artifact-runtime.transform", "kind": "optional-pack", "timeoutMs": 1000 },
|
|
114
|
+
"dependentSkills": { "source": "manifests/skill-compatibility.json", "capability": "artifact.transform" },
|
|
115
|
+
"optionalPack": {
|
|
116
|
+
"id": "artifact-runtime",
|
|
117
|
+
"missingBehavior": "Format-specific artifact transformation is unavailable.",
|
|
118
|
+
"enableGuidance": "Install only the formatter/toolchain required by the accepted task.",
|
|
119
|
+
"sideEffects": ["process execution", "local files", "possible downloads"],
|
|
120
|
+
"futureOwner": "artifact provider adapter"
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
]
|
|
124
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"platform": "linux",
|
|
4
|
+
"piVersion": "0.81.1",
|
|
5
|
+
"status": "passed",
|
|
6
|
+
"approvedScope": "fresh code-scout child; read-only package.json boundary; no project mutation; four separately approved provider attempts, with the latest passing after legacy permission-runtime removal refreshed the adapter binding",
|
|
7
|
+
"probes": [
|
|
8
|
+
{
|
|
9
|
+
"id": "native-subagent-api-fixture",
|
|
10
|
+
"command": "npx vitest run tests/unit/subagents.test.ts",
|
|
11
|
+
"status": "passed"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"id": "code-scout-read-package",
|
|
15
|
+
"command": "AILI_LIVE_SUBAGENT_PROBE=1 npx vitest run tests/integration/live-subagent.test.ts",
|
|
16
|
+
"status": "passed",
|
|
17
|
+
"changedFiles": 0
|
|
18
|
+
}
|
|
19
|
+
],
|
|
20
|
+
"implementation": {
|
|
21
|
+
"src/runtime/subagents.ts": "260429148e4b15db5a3dcc470d22c2661ffc7037de28bb227ba68262ec8be88c",
|
|
22
|
+
"tests/unit/subagents.test.ts": "48691168ca18e6a7038590a1ec348927e2328ed2009f0129138aef2dec715dcd",
|
|
23
|
+
"tests/integration/live-subagent.test.ts": "8ca54fafe77b8a58c36207ac0f72340188a70ce125871a6630cdb2b934629fd5"
|
|
24
|
+
},
|
|
25
|
+
"credentialHandling": "Existing Pi authentication was used by Pi; AILI did not copy, print, or modify authentication files."
|
|
26
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"sources": [
|
|
4
|
+
{
|
|
5
|
+
"name": "aili-workflows",
|
|
6
|
+
"repository": "https://github.com/Rosetears520/aili-workflows.git",
|
|
7
|
+
"revision": "7eb35f357ad489f5841ee10dac1e44549c1bdb76",
|
|
8
|
+
"version": "0.2.7",
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"status": "adapted",
|
|
11
|
+
"sourceFiles": [
|
|
12
|
+
"upstream/aili-workflows.lock.json#files (471 exact skill files)",
|
|
13
|
+
"manifests/roles.json#records[].sourcePath (19 exact role source files)"
|
|
14
|
+
],
|
|
15
|
+
"symbols": ["64 canonical skill bodies and owned assets", "19 child-role prompt bodies"],
|
|
16
|
+
"localChanges": [
|
|
17
|
+
"skills/** is an exact byte-for-byte snapshot with no semantic overlay",
|
|
18
|
+
"role prompts are generated as Pi frontmatter with explicit tool/capability ceilings and structured output"
|
|
19
|
+
],
|
|
20
|
+
"verification": ["npm run verify:skills", "npm run verify:roles"]
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"name": "@agwab/pi-subagent",
|
|
24
|
+
"repository": "https://github.com/AgwaB/pi-subagent.git",
|
|
25
|
+
"revision": "daa7b83819116a62008ad17aa65fcd50fefbafd0",
|
|
26
|
+
"version": "0.4.8",
|
|
27
|
+
"license": "MIT",
|
|
28
|
+
"status": "dependency",
|
|
29
|
+
"sourceFiles": ["src/api.ts", "src/runners/headless-model.ts", "src/artifacts/result.ts"],
|
|
30
|
+
"symbols": ["runSubagent API", "headless lifecycle", "artifact envelope"],
|
|
31
|
+
"localChanges": ["AILI calls the pinned API through a thin role/path/tool policy adapter; no upstream source is copied"],
|
|
32
|
+
"verification": ["tests/unit/subagents.test.ts", "tests/integration/extension-load.test.ts"]
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "pi-permission-modes",
|
|
36
|
+
"repository": "https://github.com/wynainfo/pi-permission-modes.git",
|
|
37
|
+
"revision": "23d65d10a53b67043cae42322acf9044d6edb196",
|
|
38
|
+
"version": "2.2.0",
|
|
39
|
+
"license": "MIT",
|
|
40
|
+
"status": "dependency",
|
|
41
|
+
"sourceFiles": ["src/index.ts", "permission-mode.defaults.json"],
|
|
42
|
+
"symbols": ["Default/Plan/Build/YOLO", "/perm", "Alt+M", "sandbox degradation"],
|
|
43
|
+
"localChanges": ["AILI initializes the pinned upstream extension and does not retain a competing AILI mode command or shortcut"],
|
|
44
|
+
"verification": ["tests/unit/runtime.test.ts", "tests/integration/extension-load.test.ts"]
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"name": "pi-quota-status",
|
|
48
|
+
"repository": "https://github.com/hafiezul/pi-quota-status.git",
|
|
49
|
+
"revision": "742b3e40b88fbf3d5dcd9d39af96d37bd26bb436",
|
|
50
|
+
"version": "0.3.0",
|
|
51
|
+
"license": "MIT",
|
|
52
|
+
"status": "dependency",
|
|
53
|
+
"sourceFiles": ["src/index.ts", "src/paths.ts"],
|
|
54
|
+
"symbols": ["quota footer", "/quota", "global state maintenance"],
|
|
55
|
+
"localChanges": ["AILI initializes the pinned upstream extension; upstream owns quota polling and state files"],
|
|
56
|
+
"verification": ["tests/unit/runtime.test.ts", "tests/integration/extension-load.test.ts"]
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"name": "pi-web-access",
|
|
60
|
+
"repository": "https://github.com/ttttmr/pi-web-access.git",
|
|
61
|
+
"revision": "npm:0.13.0",
|
|
62
|
+
"version": "0.13.0",
|
|
63
|
+
"license": "MIT",
|
|
64
|
+
"status": "dependency",
|
|
65
|
+
"sourceFiles": ["index.ts", "skills/"],
|
|
66
|
+
"symbols": ["web_search", "fetch_content", "get_search_content", "curator and bundled librarian skill"],
|
|
67
|
+
"localChanges": ["AILI initializes the complete pinned upstream surface through its sole Extension entry; no upstream source is copied"],
|
|
68
|
+
"verification": ["tests/unit/runtime.test.ts", "tests/integration/extension-load.test.ts"]
|
|
69
|
+
}
|
|
70
|
+
]
|
|
71
|
+
}
|