@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.
Files changed (531) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +109 -0
  3. package/THIRD_PARTY_NOTICES.md +64 -0
  4. package/extensions/index.ts +6 -0
  5. package/install.sh +5 -0
  6. package/manifests/adapter-evidence.json +45 -0
  7. package/manifests/capabilities.json +124 -0
  8. package/manifests/live-verification.json +26 -0
  9. package/manifests/provenance.json +71 -0
  10. package/manifests/roles.json +474 -0
  11. package/manifests/sbom.json +7797 -0
  12. package/manifests/skill-compatibility.json +8100 -0
  13. package/manifests/subagent-provenance.json +37 -0
  14. package/package.json +91 -0
  15. package/prompts/build.md +8 -0
  16. package/prompts/define.md +8 -0
  17. package/prompts/ideate.md +8 -0
  18. package/prompts/local-review.md +8 -0
  19. package/prompts/ship.md +8 -0
  20. package/roles/agent-evaluator.md +47 -0
  21. package/roles/ai-regression-scout.md +47 -0
  22. package/roles/browser-qa-runner.md +47 -0
  23. package/roles/code-reviewer.md +47 -0
  24. package/roles/code-scout.md +47 -0
  25. package/roles/convergence-reviewer.md +55 -0
  26. package/roles/doc-researcher.md +47 -0
  27. package/roles/e2e-artifact-runner.md +47 -0
  28. package/roles/implementer.md +47 -0
  29. package/roles/opensource-sanitizer.md +47 -0
  30. package/roles/plan-auditor.md +47 -0
  31. package/roles/pr-test-analyzer.md +47 -0
  32. package/roles/security-auditor.md +47 -0
  33. package/roles/silent-failure-reviewer.md +47 -0
  34. package/roles/spec-miner.md +47 -0
  35. package/roles/test-coverage-reviewer.md +47 -0
  36. package/roles/test-engineer.md +48 -0
  37. package/roles/web-performance-auditor.md +47 -0
  38. package/roles/web-researcher.md +47 -0
  39. package/scripts/apply-adapter-evidence.ts +73 -0
  40. package/scripts/bootstrap.sh +180 -0
  41. package/scripts/generate-provenance.ts +143 -0
  42. package/scripts/local-package-e2e.ts +51 -0
  43. package/scripts/sync-roles.ts +213 -0
  44. package/scripts/sync-skills.ts +356 -0
  45. package/scripts/validate-runtime.ts +11 -0
  46. package/skills/academic-paper-review/SKILL.md +81 -0
  47. package/skills/agents-md-initialization/SKILL.md +121 -0
  48. package/skills/agents-md-initialization/references/agents-template.md +83 -0
  49. package/skills/agents-md-initialization/references/agents_md.py +215 -0
  50. package/skills/ai-regression-scout/SKILL.md +24 -0
  51. package/skills/aili-delivery-flow/SKILL.md +125 -0
  52. package/skills/aili-delivery-flow/references/artifact-contracts.md +138 -0
  53. package/skills/aili-delivery-flow/references/backend-routing.md +40 -0
  54. package/skills/aili-delivery-flow/references/build-execution-loop.md +113 -0
  55. package/skills/aili-delivery-flow/references/build-goal-mode.md +3 -0
  56. package/skills/aili-delivery-flow/references/direct-vs-delegated-work.md +38 -0
  57. package/skills/aili-delivery-flow/references/implementation-packages.md +54 -0
  58. package/skills/aili-delivery-flow/references/lifecycle.md +127 -0
  59. package/skills/aili-delivery-flow/references/protocols/acceptance-test-plan.md +18 -0
  60. package/skills/aili-delivery-flow/references/protocols/alignment-questionnaire.md +10 -0
  61. package/skills/aili-delivery-flow/references/protocols/closeout-report.md +101 -0
  62. package/skills/aili-delivery-flow/references/protocols/compact-evidence-pack.md +46 -0
  63. package/skills/aili-delivery-flow/references/protocols/idea-brief.md +10 -0
  64. package/skills/aili-delivery-flow/references/protocols/implementation-package.md +53 -0
  65. package/skills/aili-delivery-flow/references/protocols/research-evidence-pack.md +19 -0
  66. package/skills/aili-delivery-flow/references/protocols/review-report.md +7 -0
  67. package/skills/aili-delivery-flow/references/protocols/spec-draft.md +12 -0
  68. package/skills/aili-delivery-flow/references/protocols/subagent-result.md +60 -0
  69. package/skills/aili-delivery-flow/references/protocols/subagent-task-packet.md +29 -0
  70. package/skills/aili-delivery-flow/references/protocols/worktree-context.md +109 -0
  71. package/skills/aili-delivery-flow/references/questionnaire-policy.md +62 -0
  72. package/skills/aili-delivery-flow/references/review-repair-loop.md +16 -0
  73. package/skills/aili-delivery-flow/references/test-document-policy.md +35 -0
  74. package/skills/android-native-dev/SKILL.md +722 -0
  75. package/skills/android-native-dev/references/accessibility.md +209 -0
  76. package/skills/android-native-dev/references/adaptive-screens.md +231 -0
  77. package/skills/android-native-dev/references/design-style-guide.md +365 -0
  78. package/skills/android-native-dev/references/functional-requirements.md +229 -0
  79. package/skills/android-native-dev/references/motion-system.md +203 -0
  80. package/skills/android-native-dev/references/performance-stability.md +223 -0
  81. package/skills/android-native-dev/references/privacy-security.md +244 -0
  82. package/skills/android-native-dev/references/testing.md +554 -0
  83. package/skills/android-native-dev/references/visual-design.md +246 -0
  84. package/skills/api-and-interface-design/SKILL.md +318 -0
  85. package/skills/browser-qa/SKILL.md +32 -0
  86. package/skills/browser-testing-with-devtools/SKILL.md +323 -0
  87. package/skills/build-failure-repair/SKILL.md +49 -0
  88. package/skills/chart-visualization/SKILL.md +73 -0
  89. package/skills/ci-cd-and-automation/SKILL.md +353 -0
  90. package/skills/code-review-and-quality/SKILL.md +375 -0
  91. package/skills/code-review-quality-gates/SKILL.md +132 -0
  92. package/skills/code-simplification/SKILL.md +371 -0
  93. package/skills/comment-accuracy-review/SKILL.md +37 -0
  94. package/skills/consulting-analysis/SKILL.md +69 -0
  95. package/skills/context-engineering/SKILL.md +375 -0
  96. package/skills/coverage-review/SKILL.md +24 -0
  97. package/skills/data-analysis/SKILL.md +74 -0
  98. package/skills/deprecation-and-migration/SKILL.md +222 -0
  99. package/skills/documentation-and-adrs/SKILL.md +330 -0
  100. package/skills/e2e-artifact-handling/SKILL.md +30 -0
  101. package/skills/evidence-scoped-retrospective/SKILL.md +156 -0
  102. package/skills/explain-by-allegory/SKILL.md +99 -0
  103. package/skills/flutter-dev/SKILL.md +162 -0
  104. package/skills/flutter-dev/references/animations.md +497 -0
  105. package/skills/flutter-dev/references/bloc-state.md +281 -0
  106. package/skills/flutter-dev/references/forms.md +656 -0
  107. package/skills/flutter-dev/references/gorouter-navigation.md +257 -0
  108. package/skills/flutter-dev/references/localization.md +510 -0
  109. package/skills/flutter-dev/references/networking.md +566 -0
  110. package/skills/flutter-dev/references/performance.md +305 -0
  111. package/skills/flutter-dev/references/platform-specific.md +417 -0
  112. package/skills/flutter-dev/references/project-structure.md +273 -0
  113. package/skills/flutter-dev/references/riverpod-state.md +232 -0
  114. package/skills/flutter-dev/references/testing.md +364 -0
  115. package/skills/flutter-dev/references/widget-patterns.md +233 -0
  116. package/skills/frontend-dev/SKILL.md +468 -0
  117. package/skills/frontend-dev/canvas-fonts/ArsenalSC-OFL.txt +93 -0
  118. package/skills/frontend-dev/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
  119. package/skills/frontend-dev/canvas-fonts/BigShoulders-Bold.ttf +0 -0
  120. package/skills/frontend-dev/canvas-fonts/BigShoulders-OFL.txt +93 -0
  121. package/skills/frontend-dev/canvas-fonts/BigShoulders-Regular.ttf +0 -0
  122. package/skills/frontend-dev/canvas-fonts/Boldonse-OFL.txt +93 -0
  123. package/skills/frontend-dev/canvas-fonts/Boldonse-Regular.ttf +0 -0
  124. package/skills/frontend-dev/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
  125. package/skills/frontend-dev/canvas-fonts/BricolageGrotesque-OFL.txt +93 -0
  126. package/skills/frontend-dev/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
  127. package/skills/frontend-dev/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
  128. package/skills/frontend-dev/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
  129. package/skills/frontend-dev/canvas-fonts/CrimsonPro-OFL.txt +93 -0
  130. package/skills/frontend-dev/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
  131. package/skills/frontend-dev/canvas-fonts/DMMono-OFL.txt +93 -0
  132. package/skills/frontend-dev/canvas-fonts/DMMono-Regular.ttf +0 -0
  133. package/skills/frontend-dev/canvas-fonts/EricaOne-OFL.txt +94 -0
  134. package/skills/frontend-dev/canvas-fonts/EricaOne-Regular.ttf +0 -0
  135. package/skills/frontend-dev/canvas-fonts/GeistMono-Bold.ttf +0 -0
  136. package/skills/frontend-dev/canvas-fonts/GeistMono-OFL.txt +93 -0
  137. package/skills/frontend-dev/canvas-fonts/GeistMono-Regular.ttf +0 -0
  138. package/skills/frontend-dev/canvas-fonts/Gloock-OFL.txt +93 -0
  139. package/skills/frontend-dev/canvas-fonts/Gloock-Regular.ttf +0 -0
  140. package/skills/frontend-dev/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
  141. package/skills/frontend-dev/canvas-fonts/IBMPlexMono-OFL.txt +93 -0
  142. package/skills/frontend-dev/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
  143. package/skills/frontend-dev/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
  144. package/skills/frontend-dev/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
  145. package/skills/frontend-dev/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
  146. package/skills/frontend-dev/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
  147. package/skills/frontend-dev/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
  148. package/skills/frontend-dev/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
  149. package/skills/frontend-dev/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
  150. package/skills/frontend-dev/canvas-fonts/InstrumentSans-OFL.txt +93 -0
  151. package/skills/frontend-dev/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
  152. package/skills/frontend-dev/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
  153. package/skills/frontend-dev/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
  154. package/skills/frontend-dev/canvas-fonts/Italiana-OFL.txt +93 -0
  155. package/skills/frontend-dev/canvas-fonts/Italiana-Regular.ttf +0 -0
  156. package/skills/frontend-dev/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
  157. package/skills/frontend-dev/canvas-fonts/JetBrainsMono-OFL.txt +93 -0
  158. package/skills/frontend-dev/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
  159. package/skills/frontend-dev/canvas-fonts/Jura-Light.ttf +0 -0
  160. package/skills/frontend-dev/canvas-fonts/Jura-Medium.ttf +0 -0
  161. package/skills/frontend-dev/canvas-fonts/Jura-OFL.txt +93 -0
  162. package/skills/frontend-dev/canvas-fonts/LibreBaskerville-OFL.txt +93 -0
  163. package/skills/frontend-dev/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
  164. package/skills/frontend-dev/canvas-fonts/Lora-Bold.ttf +0 -0
  165. package/skills/frontend-dev/canvas-fonts/Lora-BoldItalic.ttf +0 -0
  166. package/skills/frontend-dev/canvas-fonts/Lora-Italic.ttf +0 -0
  167. package/skills/frontend-dev/canvas-fonts/Lora-OFL.txt +93 -0
  168. package/skills/frontend-dev/canvas-fonts/Lora-Regular.ttf +0 -0
  169. package/skills/frontend-dev/canvas-fonts/NationalPark-Bold.ttf +0 -0
  170. package/skills/frontend-dev/canvas-fonts/NationalPark-OFL.txt +93 -0
  171. package/skills/frontend-dev/canvas-fonts/NationalPark-Regular.ttf +0 -0
  172. package/skills/frontend-dev/canvas-fonts/NothingYouCouldDo-OFL.txt +93 -0
  173. package/skills/frontend-dev/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
  174. package/skills/frontend-dev/canvas-fonts/Outfit-Bold.ttf +0 -0
  175. package/skills/frontend-dev/canvas-fonts/Outfit-OFL.txt +93 -0
  176. package/skills/frontend-dev/canvas-fonts/Outfit-Regular.ttf +0 -0
  177. package/skills/frontend-dev/canvas-fonts/PixelifySans-Medium.ttf +0 -0
  178. package/skills/frontend-dev/canvas-fonts/PixelifySans-OFL.txt +93 -0
  179. package/skills/frontend-dev/canvas-fonts/PoiretOne-OFL.txt +93 -0
  180. package/skills/frontend-dev/canvas-fonts/PoiretOne-Regular.ttf +0 -0
  181. package/skills/frontend-dev/canvas-fonts/RedHatMono-Bold.ttf +0 -0
  182. package/skills/frontend-dev/canvas-fonts/RedHatMono-OFL.txt +93 -0
  183. package/skills/frontend-dev/canvas-fonts/RedHatMono-Regular.ttf +0 -0
  184. package/skills/frontend-dev/canvas-fonts/Silkscreen-OFL.txt +93 -0
  185. package/skills/frontend-dev/canvas-fonts/Silkscreen-Regular.ttf +0 -0
  186. package/skills/frontend-dev/canvas-fonts/SmoochSans-Medium.ttf +0 -0
  187. package/skills/frontend-dev/canvas-fonts/SmoochSans-OFL.txt +93 -0
  188. package/skills/frontend-dev/canvas-fonts/Tektur-Medium.ttf +0 -0
  189. package/skills/frontend-dev/canvas-fonts/Tektur-OFL.txt +93 -0
  190. package/skills/frontend-dev/canvas-fonts/Tektur-Regular.ttf +0 -0
  191. package/skills/frontend-dev/canvas-fonts/WorkSans-Bold.ttf +0 -0
  192. package/skills/frontend-dev/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
  193. package/skills/frontend-dev/canvas-fonts/WorkSans-Italic.ttf +0 -0
  194. package/skills/frontend-dev/canvas-fonts/WorkSans-OFL.txt +93 -0
  195. package/skills/frontend-dev/canvas-fonts/WorkSans-Regular.ttf +0 -0
  196. package/skills/frontend-dev/canvas-fonts/YoungSerif-OFL.txt +93 -0
  197. package/skills/frontend-dev/canvas-fonts/YoungSerif-Regular.ttf +0 -0
  198. package/skills/frontend-dev/references/asset-prompt-guide.md +43 -0
  199. package/skills/frontend-dev/references/env-setup.md +33 -0
  200. package/skills/frontend-dev/references/minimax-cli-reference.md +133 -0
  201. package/skills/frontend-dev/references/minimax-image-guide.md +65 -0
  202. package/skills/frontend-dev/references/minimax-music-guide.md +216 -0
  203. package/skills/frontend-dev/references/minimax-tts-guide.md +78 -0
  204. package/skills/frontend-dev/references/minimax-video-guide.md +82 -0
  205. package/skills/frontend-dev/references/minimax-voice-catalog.md +685 -0
  206. package/skills/frontend-dev/references/motion-recipes.md +407 -0
  207. package/skills/frontend-dev/references/troubleshooting.md +85 -0
  208. package/skills/frontend-dev/scripts/minimax_image.py +137 -0
  209. package/skills/frontend-dev/scripts/minimax_music.py +157 -0
  210. package/skills/frontend-dev/scripts/minimax_tts.py +127 -0
  211. package/skills/frontend-dev/scripts/minimax_video.py +187 -0
  212. package/skills/frontend-dev/templates/generator_template.js +223 -0
  213. package/skills/frontend-dev/templates/viewer.html +599 -0
  214. package/skills/frontend-ui-engineering/SKILL.md +367 -0
  215. package/skills/fullstack-dev/SKILL.md +819 -0
  216. package/skills/fullstack-dev/references/api-design.md +444 -0
  217. package/skills/fullstack-dev/references/auth-flow.md +165 -0
  218. package/skills/fullstack-dev/references/db-schema.md +706 -0
  219. package/skills/fullstack-dev/references/django-best-practices.md +466 -0
  220. package/skills/fullstack-dev/references/environment-management.md +78 -0
  221. package/skills/fullstack-dev/references/release-checklist.md +278 -0
  222. package/skills/fullstack-dev/references/technology-selection.md +254 -0
  223. package/skills/fullstack-dev/references/testing-strategy.md +404 -0
  224. package/skills/git-workflow-and-versioning/SKILL.md +446 -0
  225. package/skills/github-evidence-triage/SKILL.md +115 -0
  226. package/skills/harness-evolution/SKILL.md +59 -0
  227. package/skills/harness-evolution/references/activation-matrix.md +13 -0
  228. package/skills/harness-evolution/references/approval-policy.md +20 -0
  229. package/skills/harness-evolution/references/change-report-template.md +33 -0
  230. package/skills/harness-evolution/references/component-taxonomy.md +19 -0
  231. package/skills/harness-evolution/references/verdict-policy.md +13 -0
  232. package/skills/harness-issue-triage/SKILL.md +72 -0
  233. package/skills/harness-issue-triage/references/component-diagnosis.md +25 -0
  234. package/skills/harness-issue-triage/references/triage-report-template.md +34 -0
  235. package/skills/harness-optimization-audit/SKILL.md +125 -0
  236. package/skills/idea-refine/SKILL.md +191 -0
  237. package/skills/idea-refine/references/upstream/addyosmani-agent-skills/6bcfeb9dae52b11eaad23511acc165109746dbc3/LICENSE +21 -0
  238. package/skills/idea-refine/references/upstream/addyosmani-agent-skills/6bcfeb9dae52b11eaad23511acc165109746dbc3/NOTICE.md +9 -0
  239. package/skills/idea-refine/references/upstream/addyosmani-agent-skills/6bcfeb9dae52b11eaad23511acc165109746dbc3/idea-refine/SKILL.upstream.md +178 -0
  240. package/skills/idea-refine/references/upstream/addyosmani-agent-skills/6bcfeb9dae52b11eaad23511acc165109746dbc3/idea-refine/examples.md +238 -0
  241. package/skills/idea-refine/references/upstream/addyosmani-agent-skills/6bcfeb9dae52b11eaad23511acc165109746dbc3/idea-refine/frameworks.md +99 -0
  242. package/skills/idea-refine/references/upstream/addyosmani-agent-skills/6bcfeb9dae52b11eaad23511acc165109746dbc3/idea-refine/refinement-criteria.md +113 -0
  243. package/skills/idea-refine/references/upstream/addyosmani-agent-skills/6bcfeb9dae52b11eaad23511acc165109746dbc3/idea-refine/scripts/idea-refine.upstream.sh +15 -0
  244. package/skills/incremental-implementation/SKILL.md +252 -0
  245. package/skills/ios-application-dev/SKILL.md +212 -0
  246. package/skills/ios-application-dev/references/accessibility.md +259 -0
  247. package/skills/ios-application-dev/references/graphics-animation.md +350 -0
  248. package/skills/ios-application-dev/references/layout-system.md +199 -0
  249. package/skills/ios-application-dev/references/metal-shader.md +178 -0
  250. package/skills/ios-application-dev/references/navigation-patterns.md +175 -0
  251. package/skills/ios-application-dev/references/swift-coding-standards.md +757 -0
  252. package/skills/ios-application-dev/references/swiftui-design-guidelines.md +1167 -0
  253. package/skills/ios-application-dev/references/system-integration.md +401 -0
  254. package/skills/ios-application-dev/references/uikit-components.md +297 -0
  255. package/skills/local-review-gate/SKILL.md +207 -0
  256. package/skills/local-review-gate/references/addyosmani-code-review-rubric.md +33 -0
  257. package/skills/local-review-gate/references/codex-github-compatibility.md +26 -0
  258. package/skills/local-review-gate/references/ecc-code-review-adaptation.md +40 -0
  259. package/skills/local-review-gate/references/graphify-local-review.md +33 -0
  260. package/skills/local-review-gate/references/orchestration-adaptation.md +51 -0
  261. package/skills/local-review-gate/references/review-repair-lane-adaptation.md +46 -0
  262. package/skills/local-review-gate/references/upstream-provenance.md +61 -0
  263. package/skills/mature-project-pattern-research/SKILL.md +155 -0
  264. package/skills/mature-project-pattern-research/references/research-rubric.md +45 -0
  265. package/skills/minimax-docx/LICENSE +21 -0
  266. package/skills/minimax-docx/SKILL.md +273 -0
  267. package/skills/minimax-docx/assets/styles/academic_styles.xml +250 -0
  268. package/skills/minimax-docx/assets/styles/corporate_styles.xml +284 -0
  269. package/skills/minimax-docx/assets/styles/default_styles.xml +449 -0
  270. package/skills/minimax-docx/assets/xsd/aesthetic-rules.xsd +470 -0
  271. package/skills/minimax-docx/assets/xsd/business-rules.xsd +130 -0
  272. package/skills/minimax-docx/assets/xsd/common-types.xsd +159 -0
  273. package/skills/minimax-docx/assets/xsd/wml-subset.xsd +589 -0
  274. package/skills/minimax-docx/references/cjk_typography.md +357 -0
  275. package/skills/minimax-docx/references/cjk_university_template_guide.md +184 -0
  276. package/skills/minimax-docx/references/comments_guide.md +191 -0
  277. package/skills/minimax-docx/references/design_good_bad_examples.md +829 -0
  278. package/skills/minimax-docx/references/design_principles.md +819 -0
  279. package/skills/minimax-docx/references/openxml_element_order.md +308 -0
  280. package/skills/minimax-docx/references/openxml_encyclopedia_part1.md +4061 -0
  281. package/skills/minimax-docx/references/openxml_encyclopedia_part2.md +2820 -0
  282. package/skills/minimax-docx/references/openxml_encyclopedia_part3.md +3381 -0
  283. package/skills/minimax-docx/references/openxml_namespaces.md +82 -0
  284. package/skills/minimax-docx/references/openxml_units.md +72 -0
  285. package/skills/minimax-docx/references/scenario_a_create.md +284 -0
  286. package/skills/minimax-docx/references/scenario_b_edit_content.md +295 -0
  287. package/skills/minimax-docx/references/scenario_c_apply_template.md +456 -0
  288. package/skills/minimax-docx/references/track_changes_guide.md +200 -0
  289. package/skills/minimax-docx/references/troubleshooting.md +506 -0
  290. package/skills/minimax-docx/references/typography_guide.md +294 -0
  291. package/skills/minimax-docx/references/xsd_validation_guide.md +158 -0
  292. package/skills/minimax-docx/scripts/doc_to_docx.sh +40 -0
  293. package/skills/minimax-docx/scripts/docx_preview.sh +37 -0
  294. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/MiniMaxAIDocx.Cli.csproj +19 -0
  295. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/Program.cs +18 -0
  296. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/AnalyzeCommand.cs +147 -0
  297. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/ApplyTemplateCommand.cs +322 -0
  298. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/CreateCommand.cs +324 -0
  299. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/DiffCommand.cs +155 -0
  300. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/EditContentCommand.cs +487 -0
  301. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/FixOrderCommand.cs +108 -0
  302. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/MergeRunsCommand.cs +122 -0
  303. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/ValidateCommand.cs +107 -0
  304. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/MiniMaxAIDocx.Core.csproj +15 -0
  305. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/CommentSynchronizer.cs +169 -0
  306. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/ElementOrder.cs +80 -0
  307. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/NamespaceConstants.cs +42 -0
  308. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/RunMerger.cs +81 -0
  309. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/StyleAnalyzer.cs +81 -0
  310. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/TrackChangesHelper.cs +99 -0
  311. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/UnitConverter.cs +23 -0
  312. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/AestheticRecipeSamples.cs +1832 -0
  313. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/AestheticRecipeSamples_Batch1.cs +910 -0
  314. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/AestheticRecipeSamples_Batch2.cs +999 -0
  315. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/AestheticRecipeSamples_Batch3.cs +1048 -0
  316. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/AestheticRecipeSamples_Batch4.cs +1038 -0
  317. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/CharacterFormattingSamples.cs +1020 -0
  318. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/DocumentCreationSamples.cs +1121 -0
  319. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/FieldAndTocSamples.cs +624 -0
  320. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/FootnoteAndCommentSamples.cs +675 -0
  321. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/HeaderFooterSamples.cs +838 -0
  322. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/ImageSamples.cs +917 -0
  323. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/ListAndNumberingSamples.cs +826 -0
  324. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/ParagraphFormattingSamples.cs +1199 -0
  325. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/StyleSystemSamples.cs +1487 -0
  326. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/TableSamples.cs +1163 -0
  327. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/TrackChangesSamples.cs +595 -0
  328. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Typography/CjkHelper.cs +39 -0
  329. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Typography/FontDefaults.cs +24 -0
  330. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Typography/PageSizes.cs +20 -0
  331. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Validation/BusinessRuleValidator.cs +224 -0
  332. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Validation/GateCheckValidator.cs +148 -0
  333. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Validation/ValidationResult.cs +23 -0
  334. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Validation/XsdValidator.cs +69 -0
  335. package/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.slnx +4 -0
  336. package/skills/minimax-docx/scripts/env_check.sh +196 -0
  337. package/skills/minimax-docx/scripts/setup.ps1 +274 -0
  338. package/skills/minimax-docx/scripts/setup.sh +504 -0
  339. package/skills/minimax-pdf/README.md +222 -0
  340. package/skills/minimax-pdf/SKILL.md +218 -0
  341. package/skills/minimax-pdf/design/design.md +381 -0
  342. package/skills/minimax-pdf/scripts/cover.py +1579 -0
  343. package/skills/minimax-pdf/scripts/fill_inspect.py +200 -0
  344. package/skills/minimax-pdf/scripts/fill_write.py +242 -0
  345. package/skills/minimax-pdf/scripts/make.sh +491 -0
  346. package/skills/minimax-pdf/scripts/merge.py +112 -0
  347. package/skills/minimax-pdf/scripts/palette.py +521 -0
  348. package/skills/minimax-pdf/scripts/reformat_parse.py +374 -0
  349. package/skills/minimax-pdf/scripts/render_body.py +1052 -0
  350. package/skills/minimax-pdf/scripts/render_cover.js +111 -0
  351. package/skills/minimax-xlsx/SKILL.md +156 -0
  352. package/skills/minimax-xlsx/references/create.md +691 -0
  353. package/skills/minimax-xlsx/references/edit.md +684 -0
  354. package/skills/minimax-xlsx/references/fix.md +37 -0
  355. package/skills/minimax-xlsx/references/format.md +768 -0
  356. package/skills/minimax-xlsx/references/ooxml-cheatsheet.md +231 -0
  357. package/skills/minimax-xlsx/references/read-analyze.md +97 -0
  358. package/skills/minimax-xlsx/references/validate.md +772 -0
  359. package/skills/minimax-xlsx/scripts/formula_check.py +422 -0
  360. package/skills/minimax-xlsx/scripts/libreoffice_recalc.py +248 -0
  361. package/skills/minimax-xlsx/scripts/shared_strings_builder.py +163 -0
  362. package/skills/minimax-xlsx/scripts/style_audit.py +575 -0
  363. package/skills/minimax-xlsx/scripts/xlsx_add_column.py +395 -0
  364. package/skills/minimax-xlsx/scripts/xlsx_insert_row.py +274 -0
  365. package/skills/minimax-xlsx/scripts/xlsx_pack.py +87 -0
  366. package/skills/minimax-xlsx/scripts/xlsx_reader.py +362 -0
  367. package/skills/minimax-xlsx/scripts/xlsx_shift_rows.py +396 -0
  368. package/skills/minimax-xlsx/scripts/xlsx_unpack.py +130 -0
  369. package/skills/minimax-xlsx/templates/minimal_xlsx/[Content_Types].xml +9 -0
  370. package/skills/minimax-xlsx/templates/minimal_xlsx/_rels/.rels +6 -0
  371. package/skills/minimax-xlsx/templates/minimal_xlsx/xl/_rels/workbook.xml.rels +19 -0
  372. package/skills/minimax-xlsx/templates/minimal_xlsx/xl/sharedStrings.xml +33 -0
  373. package/skills/minimax-xlsx/templates/minimal_xlsx/xl/styles.xml +160 -0
  374. package/skills/minimax-xlsx/templates/minimal_xlsx/xl/workbook.xml +30 -0
  375. package/skills/minimax-xlsx/templates/minimal_xlsx/xl/worksheets/sheet1.xml +70 -0
  376. package/skills/newsletter-generation/SKILL.md +71 -0
  377. package/skills/oss-release-readiness/SKILL.md +47 -0
  378. package/skills/parallel-subagent-dispatch/SKILL.md +58 -0
  379. package/skills/performance-optimization/SKILL.md +364 -0
  380. package/skills/planning-and-task-breakdown/SKILL.md +290 -0
  381. package/skills/pptx-generator/SKILL.md +275 -0
  382. package/skills/pptx-generator/references/design-system.md +392 -0
  383. package/skills/pptx-generator/references/editing.md +162 -0
  384. package/skills/pptx-generator/references/pitfalls.md +112 -0
  385. package/skills/pptx-generator/references/pptxgenjs.md +420 -0
  386. package/skills/pptx-generator/references/slide-types.md +413 -0
  387. package/skills/pr-test-analysis/SKILL.md +24 -0
  388. package/skills/react-native-dev/SKILL.md +180 -0
  389. package/skills/react-native-dev/references/animations.md +254 -0
  390. package/skills/react-native-dev/references/components.md +124 -0
  391. package/skills/react-native-dev/references/engineering.md +527 -0
  392. package/skills/react-native-dev/references/forms.md +300 -0
  393. package/skills/react-native-dev/references/native-capabilities.md +163 -0
  394. package/skills/react-native-dev/references/navigation.md +271 -0
  395. package/skills/react-native-dev/references/networking.md +346 -0
  396. package/skills/react-native-dev/references/performance.md +215 -0
  397. package/skills/react-native-dev/references/state-management.md +230 -0
  398. package/skills/react-native-dev/references/styling.md +117 -0
  399. package/skills/react-native-dev/references/testing.md +341 -0
  400. package/skills/requirements-grilling/SKILL.md +447 -0
  401. package/skills/requirements-grilling/references/ADR-FORMAT.md +46 -0
  402. package/skills/requirements-grilling/references/CONTEXT-FORMAT.md +41 -0
  403. package/skills/requirements-grilling/references/INTERVIEW-PACKET-FORMAT.md +62 -0
  404. package/skills/requirements-grilling/references/MIT-LICENSE-MATT-POCOCK.md +25 -0
  405. package/skills/requirements-grilling/references/upstream/addyosmani-agent-skills/6bcfeb9dae52b11eaad23511acc165109746dbc3/LICENSE +21 -0
  406. package/skills/requirements-grilling/references/upstream/addyosmani-agent-skills/6bcfeb9dae52b11eaad23511acc165109746dbc3/NOTICE.md +9 -0
  407. package/skills/requirements-grilling/references/upstream/addyosmani-agent-skills/6bcfeb9dae52b11eaad23511acc165109746dbc3/interview-me/SKILL.upstream.md +225 -0
  408. package/skills/requirements-grilling/references/upstream/mattpocock-skills/9603c1cc8118d08bc1b3bf34cf714f62178dea3b/LICENSE +21 -0
  409. package/skills/requirements-grilling/references/upstream/mattpocock-skills/9603c1cc8118d08bc1b3bf34cf714f62178dea3b/NOTICE.md +12 -0
  410. package/skills/requirements-grilling/references/upstream/mattpocock-skills/9603c1cc8118d08bc1b3bf34cf714f62178dea3b/batch-grill-me/SKILL.upstream.md +15 -0
  411. package/skills/requirements-grilling/references/upstream/mattpocock-skills/9603c1cc8118d08bc1b3bf34cf714f62178dea3b/grill-me/SKILL.upstream.md +7 -0
  412. package/skills/requirements-grilling/references/upstream/mattpocock-skills/9603c1cc8118d08bc1b3bf34cf714f62178dea3b/grilling/SKILL.upstream.md +12 -0
  413. package/skills/review-pipeline/SKILL.md +38 -0
  414. package/skills/rose-memory/SKILL.md +210 -0
  415. package/skills/rose-memory/references/README.md +48 -0
  416. package/skills/rose-memory/references/memory_cli.py +2384 -0
  417. package/skills/rose-memory/references/schema.sql +315 -0
  418. package/skills/security-and-hardening/SKILL.md +369 -0
  419. package/skills/session-handoff/SKILL.md +88 -0
  420. package/skills/session-handoff/references/upstream/mattpocock-skills/391a2701dd948f94f56a39f7533f8eea9a859c87/LICENSE +21 -0
  421. package/skills/session-handoff/references/upstream/mattpocock-skills/391a2701dd948f94f56a39f7533f8eea9a859c87/NOTICE.md +9 -0
  422. package/skills/session-handoff/references/upstream/mattpocock-skills/391a2701dd948f94f56a39f7533f8eea9a859c87/productivity/handoff/SKILL.upstream.md +16 -0
  423. package/skills/session-handoff/scripts/session_handoff.py +764 -0
  424. package/skills/shader-dev/SKILL.md +316 -0
  425. package/skills/shader-dev/reference/ambient-occlusion.md +382 -0
  426. package/skills/shader-dev/reference/analytic-ray-tracing.md +651 -0
  427. package/skills/shader-dev/reference/anti-aliasing.md +71 -0
  428. package/skills/shader-dev/reference/atmospheric-scattering.md +571 -0
  429. package/skills/shader-dev/reference/camera-effects.md +80 -0
  430. package/skills/shader-dev/reference/cellular-automata.md +635 -0
  431. package/skills/shader-dev/reference/color-palette.md +481 -0
  432. package/skills/shader-dev/reference/csg-boolean-operations.md +466 -0
  433. package/skills/shader-dev/reference/domain-repetition.md +436 -0
  434. package/skills/shader-dev/reference/domain-warping.md +419 -0
  435. package/skills/shader-dev/reference/fluid-simulation.md +425 -0
  436. package/skills/shader-dev/reference/fractal-rendering.md +525 -0
  437. package/skills/shader-dev/reference/lighting-model.md +639 -0
  438. package/skills/shader-dev/reference/matrix-transform.md +535 -0
  439. package/skills/shader-dev/reference/multipass-buffer.md +571 -0
  440. package/skills/shader-dev/reference/normal-estimation.md +418 -0
  441. package/skills/shader-dev/reference/particle-system.md +589 -0
  442. package/skills/shader-dev/reference/path-tracing-gi.md +602 -0
  443. package/skills/shader-dev/reference/polar-uv-manipulation.md +521 -0
  444. package/skills/shader-dev/reference/post-processing.md +375 -0
  445. package/skills/shader-dev/reference/procedural-2d-pattern.md +439 -0
  446. package/skills/shader-dev/reference/procedural-noise.md +551 -0
  447. package/skills/shader-dev/reference/ray-marching.md +396 -0
  448. package/skills/shader-dev/reference/sdf-2d.md +724 -0
  449. package/skills/shader-dev/reference/sdf-3d.md +805 -0
  450. package/skills/shader-dev/reference/sdf-tricks.md +63 -0
  451. package/skills/shader-dev/reference/shadow-techniques.md +476 -0
  452. package/skills/shader-dev/reference/simulation-physics.md +644 -0
  453. package/skills/shader-dev/reference/sound-synthesis.md +578 -0
  454. package/skills/shader-dev/reference/terrain-rendering.md +839 -0
  455. package/skills/shader-dev/reference/texture-mapping-advanced.md +87 -0
  456. package/skills/shader-dev/reference/texture-sampling.md +553 -0
  457. package/skills/shader-dev/reference/volumetric-rendering.md +608 -0
  458. package/skills/shader-dev/reference/voronoi-cellular-noise.md +486 -0
  459. package/skills/shader-dev/reference/voxel-rendering.md +701 -0
  460. package/skills/shader-dev/reference/water-ocean.md +445 -0
  461. package/skills/shader-dev/reference/webgl-pitfalls.md +41 -0
  462. package/skills/shader-dev/techniques/ambient-occlusion.md +364 -0
  463. package/skills/shader-dev/techniques/analytic-ray-tracing.md +542 -0
  464. package/skills/shader-dev/techniques/anti-aliasing.md +124 -0
  465. package/skills/shader-dev/techniques/atmospheric-scattering.md +522 -0
  466. package/skills/shader-dev/techniques/camera-effects.md +115 -0
  467. package/skills/shader-dev/techniques/cellular-automata.md +531 -0
  468. package/skills/shader-dev/techniques/color-palette.md +380 -0
  469. package/skills/shader-dev/techniques/csg-boolean-operations.md +491 -0
  470. package/skills/shader-dev/techniques/domain-repetition.md +333 -0
  471. package/skills/shader-dev/techniques/domain-warping.md +414 -0
  472. package/skills/shader-dev/techniques/fluid-simulation.md +1175 -0
  473. package/skills/shader-dev/techniques/fractal-rendering.md +436 -0
  474. package/skills/shader-dev/techniques/lighting-model.md +527 -0
  475. package/skills/shader-dev/techniques/matrix-transform.md +455 -0
  476. package/skills/shader-dev/techniques/multipass-buffer.md +922 -0
  477. package/skills/shader-dev/techniques/normal-estimation.md +318 -0
  478. package/skills/shader-dev/techniques/particle-system.md +1203 -0
  479. package/skills/shader-dev/techniques/path-tracing-gi.md +623 -0
  480. package/skills/shader-dev/techniques/polar-uv-manipulation.md +373 -0
  481. package/skills/shader-dev/techniques/post-processing.md +788 -0
  482. package/skills/shader-dev/techniques/procedural-2d-pattern.md +346 -0
  483. package/skills/shader-dev/techniques/procedural-noise.md +554 -0
  484. package/skills/shader-dev/techniques/ray-marching.md +467 -0
  485. package/skills/shader-dev/techniques/sdf-2d.md +631 -0
  486. package/skills/shader-dev/techniques/sdf-3d.md +589 -0
  487. package/skills/shader-dev/techniques/sdf-tricks.md +100 -0
  488. package/skills/shader-dev/techniques/shadow-techniques.md +776 -0
  489. package/skills/shader-dev/techniques/simulation-physics.md +1542 -0
  490. package/skills/shader-dev/techniques/sound-synthesis.md +490 -0
  491. package/skills/shader-dev/techniques/terrain-rendering.md +408 -0
  492. package/skills/shader-dev/techniques/texture-mapping-advanced.md +121 -0
  493. package/skills/shader-dev/techniques/texture-sampling.md +382 -0
  494. package/skills/shader-dev/techniques/volumetric-rendering.md +375 -0
  495. package/skills/shader-dev/techniques/voronoi-cellular-noise.md +458 -0
  496. package/skills/shader-dev/techniques/voxel-rendering.md +985 -0
  497. package/skills/shader-dev/techniques/water-ocean.md +490 -0
  498. package/skills/shader-dev/techniques/webgl-pitfalls.md +170 -0
  499. package/skills/shipping-and-launch/SKILL.md +334 -0
  500. package/skills/silent-failure-hunting/SKILL.md +24 -0
  501. package/skills/source-driven-development/SKILL.md +223 -0
  502. package/skills/spec-driven-development/SKILL.md +235 -0
  503. package/skills/spec-driven-development/references/upstream/addyosmani-agent-skills/6bcfeb9dae52b11eaad23511acc165109746dbc3/LICENSE +21 -0
  504. package/skills/spec-driven-development/references/upstream/addyosmani-agent-skills/6bcfeb9dae52b11eaad23511acc165109746dbc3/NOTICE.md +9 -0
  505. package/skills/spec-driven-development/references/upstream/addyosmani-agent-skills/6bcfeb9dae52b11eaad23511acc165109746dbc3/spec-driven-development/SKILL.upstream.md +206 -0
  506. package/skills/strategy-stress-test/SKILL.md +185 -0
  507. package/skills/systematic-literature-review/SKILL.md +77 -0
  508. package/skills/test-document-generator/SKILL.md +152 -0
  509. package/skills/test-document-generator/references/test-document-template.md +45 -0
  510. package/skills/test-driven-development/SKILL.md +399 -0
  511. package/skills/write-skills/GLOSSARY.md +113 -0
  512. package/skills/write-skills/SKILL.md +133 -0
  513. package/skills/write-skills/references/upstream/mattpocock-skills/391a2701dd948f94f56a39f7533f8eea9a859c87/LICENSE +21 -0
  514. package/skills/write-skills/references/upstream/mattpocock-skills/391a2701dd948f94f56a39f7533f8eea9a859c87/NOTICE.md +9 -0
  515. package/skills/write-skills/references/upstream/mattpocock-skills/391a2701dd948f94f56a39f7533f8eea9a859c87/productivity/writing-great-skills/GLOSSARY.md +201 -0
  516. package/skills/write-skills/references/upstream/mattpocock-skills/391a2701dd948f94f56a39f7533f8eea9a859c87/productivity/writing-great-skills/SKILL.upstream.md +83 -0
  517. package/src/runtime/child-guard.ts +70 -0
  518. package/src/runtime/conflicts.ts +25 -0
  519. package/src/runtime/contracts.ts +9 -0
  520. package/src/runtime/doctor.ts +134 -0
  521. package/src/runtime/global-resources.ts +152 -0
  522. package/src/runtime/index.ts +23 -0
  523. package/src/runtime/lifecycle.ts +19 -0
  524. package/src/runtime/native-integrations.ts +44 -0
  525. package/src/runtime/path-boundaries.ts +69 -0
  526. package/src/runtime/registry.ts +213 -0
  527. package/src/runtime/roles.ts +64 -0
  528. package/src/runtime/rose-context.ts +24 -0
  529. package/src/runtime/subagents.ts +426 -0
  530. package/templates/APPEND_SYSTEM.md +12 -0
  531. package/upstream/aili-workflows.lock.json +3226 -0
@@ -0,0 +1,207 @@
1
+ ---
2
+ name: local-review-gate
3
+ description: Run the explicit `/local-review` command or an equivalent user-requested standalone local audit over a diff, ref, PR, or OpenSpec change; do not trigger automatically from BUILD/SHIP, implementation completion, merge wording, or ordinary review-adjacent work.
4
+ ---
5
+
6
+ # Local Review Gate
7
+
8
+ ## Purpose
9
+
10
+ Use this skill when the user invokes `/local-review` or explicitly requests the same standalone report-first local audit before repair or PR submission.
11
+
12
+ This skill is the workflow authority for the AILI-owned local review gate. It is not OpenCode's built-in `/review`, it does not replace `/ship`, and neither its report nor a subagent PASS is lifecycle acceptance or SHIP, release, merge, archive, or closeout evidence.
13
+
14
+ ## Non-Negotiable Boundaries
15
+
16
+ - Do not override, replace, or depend on OpenCode's built-in `/review` command.
17
+ - Do not claim release-ready, archive-ready, merge-ready, or SHIP-ready status; `/local-review` verdicts apply only to the reviewed target and evidence scope.
18
+ - Do not use a `/local-review` result as lifecycle acceptance or SHIP/release/merge/archive evidence.
19
+ - Do not push, create PRs, comment on GitHub, approve/request changes, merge, tag, publish, delete, reset, clean, or mutate remote state.
20
+ - PR mode may run only the exact GitHub CLI allowlist `gh pr view`, `gh pr diff`, and `gh pr list --head`; do not run `gh api`, `gh pr checkout`, `gh pr comment`, `gh pr review`, `gh pr merge`, `gh pr create`, `gh repo clone`, or equivalent push, merge, comment, review, checkout, clone, or remote-mutating commands.
21
+ - Do not perform repair until after a categorized report exists and `--repair` or an explicit user/current-contract approval authorizes repair.
22
+ - Any delegated review context remains read-only and terminal. After an explicit `--repair`/current-contract authorization, ROSE may repair directly or use one independently justified fresh edit assignment; one affected recheck is sufficient and no old context is resumed.
23
+ - Do not hide skipped checks, unavailable tools, stale evidence, partial context, or `Unverified` items.
24
+
25
+ ## Upstream Provenance and Adaptation
26
+
27
+ Before copying or adapting upstream review material, read `references/upstream-provenance.md` and preserve its active/deferred source split. Active behavior references for this gate are:
28
+
29
+ - `references/ecc-code-review-adaptation.md`: local/PR target selection, full-file review, validation, report artifact, verdict mapping, and read-only PR-mode boundaries.
30
+ - `references/review-repair-lane-adaptation.md`: ECC-derived review/repair lane triggers, build-fix loop discipline, and separate repair ownership.
31
+ - `references/orchestration-adaptation.md`: bounded capability selection, blocking/advisory split, evidence reconciliation, and main-agent-only integration/verdict rules; upstream fan-out language is non-authoritative where it conflicts with trigger-gated routing.
32
+ - `references/addyosmani-code-review-rubric.md`: five-axis review rubric, `Critical`/`Important`/`Suggestion`, spec/task-first reading, concrete fixes, and uncertainty/proof gates.
33
+ - `references/codex-github-compatibility.md`: behavior-only Codex/GitHub compatibility for AGENTS rules, PR focus instructions, high-priority findings, and local review/fix parity without cloud mutation.
34
+ - `references/graphify-local-review.md`: existing-output-only adapter for optional architecture context from the official global Graphify skill. This gate neither owns nor launches Graphify and adds no install, registration, project execution, hook/plugin, scheduler, lifecycle gate, or completion authority.
35
+
36
+ - Active derivative-reference sources: primary ECC `affaan-m/ECC` and `addyosmani/agent-skills`.
37
+ - Behavior-only guidance: official Codex review docs; do not copy Codex documentation text.
38
+ - Deferred or non-primary candidates: Kodelyth ECC, Elaine mirror/candidate, and `cminn10/ecc2cursor` unless a later scoped provenance review activates them.
39
+ - Preserve MIT license/provenance for copied/adapted ECC or addyosmani material, including source URL, source path, copied/adapted scope, and adaptation rationale.
40
+ - Replace Claude/ECC-specific tool, path, command, permission, and runtime assumptions with OpenCode/AILI-safe equivalents before activation.
41
+ - Keep long copied/adapted material in references where possible, and use precise triggers and near-miss boundaries to avoid over-triggering.
42
+ - Do not activate `.claude` paths, Claude-only tools, ECC-only command names, `ccg-workflow`, Codex/Gemini runtime dependencies, public `multi-*` commands, or unsafe remote mutation defaults.
43
+
44
+ ## Target Resolver
45
+
46
+ Resolve and report the target before reviewing or accepting findings. Direct ROSE inspection is the default; no review lane is required merely because this command was invoked.
47
+
48
+ | Input | Required resolution |
49
+ |---|---|
50
+ | no args | staged, unstaged, and untracked local changes; report absent categories too |
51
+ | `--base <branch>` | current branch, selected base, merge-base, diff range, and any local staged/unstaged/untracked overlay |
52
+ | `--commit <sha>` | commit identity, parent/range, touched files, and unavailable commit metadata |
53
+ | `--pr <url\|number>` | read-only PR metadata/diff only through the exact GitHub CLI allowlist `gh pr view`, `gh pr diff`, and `gh pr list --head` when available; no `gh api`, checkout, clone, comment, review, merge, create, push, or equivalent remote mutation |
54
+ | `--change <id\|path>` or OpenSpec path | proposal, design, tasks, specs, interview, test-plan, context, progress, drift log or legacy implementation notes, review report, final diff, and verification evidence |
55
+ | `--focus <text>` or adversarial wording | target plus focus lane emphasis such as security, tests, data loss, performance, spec drift, or adversarial review |
56
+ | `--repair` | only after a categorized report exists; convert approved findings into scoped repair packages and require re-review |
57
+
58
+ For OpenSpec `--change <id|path>` targets, resolve the conventional artifact paths directly instead of relying only on broad glob/search output. Local `openspec/` directories may be git-ignored or omitted from snapshot-style indexes, so the target resolver must attempt exact reads or file listings for `proposal.md`, `design.md`, `tasks.md`, `interview.md`, `test-plan.md`, `context.md`, `progress.txt`, `review-report.md`, `drift-log.md`, legacy `implementation-notes.html`, and `specs/**/spec.md` before marking the artifact absent. If a broad search finds no OpenSpec files but exact reads/listing show the change exists, treat the broad search as insufficient evidence rather than as absence.
59
+
60
+ If target, base, PR identity, OpenSpec change id, report path, permission, or required evidence source is ambiguous and cannot be safely inferred, return `BLOCKED` with the exact missing decision.
61
+
62
+ ## Full-Context Evidence Policy
63
+
64
+ Diff-only review is insufficient for high-confidence findings.
65
+
66
+ Before reporting a definite critical, security, data-loss, compatibility, correctness, or test adequacy finding, require:
67
+
68
+ - full inspection of changed files and relevant untracked files;
69
+ - related tests, fixtures, config, docs, AGENTS files, manifests, schemas, or protocol docs that constrain behavior;
70
+ - callers, consumers, peer patterns, or downstream output paths when the claim depends on integration behavior;
71
+ - command or artifact evidence for verification claims, or an explicit skipped reason with risk.
72
+
73
+ When full context cannot be inspected within scope, label the affected claim `Unverified`, downgrade confidence, and prevent a `PASS` verdict unless the item is immaterial or explicitly accepted as risk.
74
+
75
+ ## Report Artifact Contract
76
+
77
+ For non-trivial targets, create or update a repository-local Markdown report before repair starts.
78
+
79
+ - OpenSpec default: `openspec/changes/<change-id>/review-report.md`.
80
+ - Non-OpenSpec target: ask once for a repository-local report path, or offer chat-only review only when the user explicitly accepts the persistence limitation as `Unverified`.
81
+ - Do not store or print secrets, tokens, private keys, cookies, raw logs, full transcripts, full file dumps, or private data in reports; use redacted path:line/type evidence instead.
82
+
83
+ The report must record:
84
+
85
+ - target, base/ref, merge-base, commit, PR metadata, or change id;
86
+ - timestamp and current worktree/dirty-path classification when relevant;
87
+ - source artifacts reviewed and source artifacts missing;
88
+ - files/artifacts inspected in full, sampled, or skipped;
89
+ - review lanes and checks run, skipped, stale, or unavailable;
90
+ - categorized findings with severity, category, source lane, evidence anchor, affected file/artifact, required action, repair owner, repairability, current status, and re-review requirement;
91
+ - previous findings, resolved/deferred/accepted-risk/out-of-scope items, and re-review history;
92
+ - final verdict and named residual `Unverified` items.
93
+
94
+ All review/test/security/coverage/convergence lane results embedded or referenced by the report must use the exact canonical finding/result envelope in `aili-delivery-flow/references/protocols/subagent-result.md`. A worker proposes `fix`, `refute-with-counter-evidence`, `accept-named-risk`, or `Unverified-block`; ROSE owns final disposition. Do not reconcile by majority vote, lane count, or averaged confidence, and do not treat a worker verdict as final authority.
95
+
96
+ ### Conditional arbitration artifact
97
+
98
+ - Create or update exactly `openspec/changes/<change-id>/review-arbitration.md` only when a finding is disputed, blocking, cross-session, or materially inconsistent.
99
+ - Preserve stable finding ID, competing claims, evidence and counter-evidence, proposed dispositions, ROSE disposition and rationale, decision owner, status, required recheck, freshness, and residual `Unverified` items.
100
+ - A credible material minority finding stays open until fixed/rechecked, refuted with counter-evidence, accepted as a named risk by the authorized owner, or blocked as `Unverified`.
101
+ - Do not create the artifact for routine uncontested findings and do not pre-create an empty instance.
102
+
103
+ ## Verdict Vocabulary
104
+
105
+ Use only these local-review verdicts:
106
+
107
+ - `BLOCKED`: target, permissions, evidence, report placement, or required decision is missing.
108
+ - `NEEDS_FIXES`: actionable blocking or important findings remain.
109
+ - `NEEDS_REVIEW`: human/product decision or conflicting evidence is required.
110
+ - `PASS_WITH_UNVERIFIED`: no blocking findings remain, but named skipped or unverifiable items remain.
111
+ - `PASS`: no blocking findings for the audited target and evidence scope, with fresh evidence and no material `Unverified` items.
112
+ - `REPAIRING`: approved repair packages are being executed by separate edit/repair or edit/test lanes.
113
+ - `REREVIEW_REQUIRED`: fixes were made or prior findings remain unresolved and need fresh review.
114
+
115
+ `PASS` never means release-ready or SHIP-ready.
116
+
117
+ For large or harness-sensitive `/local-review --change <id|path>` targets, `NEEDS_FIXES` and `BLOCKED` block BUILD continuation. `PASS_WITH_UNVERIFIED` may continue only after the user accepts each named `Unverified` item; otherwise return `NEEDS_REVIEW` or `BLOCKED` with the missing acceptance.
118
+
119
+ ## Review Capability Selection
120
+
121
+ Select one primary review question and run the proactive delegation scan. Add at most one auxiliary capability when the user requests it or a concrete evidence gap triggers it; direct review is the no-trigger/blocked fallback. Default concurrency is at most two but is not a hard cap. Larger bounded read-only fan-out requires independent non-overlapping contexts, concrete benefit, suitable owners, and an explicit join plan. Do not run a review/test/security/coverage/convergence set without trigger evidence.
122
+
123
+ - target/context lane: target identity, diff/base/PR/change scope, dirty paths, and report placement;
124
+ - `code-reviewer`: correctness, maintainability, architecture, performance, and context adequacy;
125
+ - `test-engineer` or `test-coverage-reviewer`: verification story, test quality, and uncovered paths;
126
+ - `security-auditor`: auth, permissions, secrets, shell/installers, network, dependencies, storage, or data-loss risk;
127
+ - `pr-test-analyzer`: branch/PR-like diffs, changed-test review, CI-log interpretation, and focused command matrix;
128
+ - `ai-regression-scout`: prompts, agents, skills, routing, fixtures, model/tool routing, or generated-output changes;
129
+ - `silent-failure-reviewer`: stale evidence, skipped gates, misleading reports, swallowed errors, and false PASS risk;
130
+ - `convergence-reviewer`: formal OpenSpec, multi-phase, harness-sensitive, or evidence-heavy work where source artifacts must be compared to tasks, diff, progress, review, and verification evidence;
131
+ - browser/E2E lanes only when the changed surface and artifact placement justify them;
132
+ - open-source/provenance lanes only when public/package/provenance exposure is in scope.
133
+
134
+ Any selected auxiliary packet must include target identity, accepted scope, source artifacts, diff/files, evidence already run, artifact placement rules, forbidden remote mutation, skipped-capability constraints, and expected terminal status. It is read-only, single-use, non-delegating, and must not repair its own findings or be resumed.
135
+
136
+ For A33, each lane names exactly one packet-declared repository/cwd, references one current WT-001 context, re-reads applicable target rules that may narrow but never broaden, and writes any user-visible report to the owning repository. It records inspected scope, freshness, skipped checks, and the shared-trust soft-boundary limitation; it performs no broad host scan and never duplicates or rebinds identity, keys, approvals, Git state, rule bodies, verification command/cwd, or containment facts.
137
+
138
+ Apply the adapted upstream evidence gates only to the selected question:
139
+
140
+ - inspect the relevant accepted artifacts and current implementation/test evidence before a definite finding;
141
+ - require `Critical`/`Important` findings to include exact evidence, concrete failure mode, why existing guards do not catch it, and a concrete fix;
142
+ - accept zero findings only when inspected scope, skipped checks, and confidence are recorded;
143
+ - treat an empty/status-less auxiliary result as missing evidence, not as permission to resume or dispatch an automatic retry;
144
+ - split reconciled findings into blocking and advisory buckets, with unverifiable high-risk findings blocking until checked or explicitly accepted.
145
+
146
+ ## Convergence and Phase Checkpoints
147
+
148
+ For formal or multi-phase work, compare the accepted source artifacts, relevant savepoints, final diff/worktree state, and fresh claim-matched checks. If parallel work was actually used, reconcile its compact status, evidence, and blockers before continuing.
149
+
150
+ The active lifecycle owner remains outside `/local-review`: BUILD completion uses direct changed-scope/task-link inspection and the smallest relevant check, with one auxiliary capability only for a concrete gap and at most one targeted repair/recheck. `Package 12` is historical terminology for `complete-aili-workflow-orchestration`, not a generic review stage. A local-review report neither triggers nor satisfies lifecycle completion.
151
+
152
+ In the historical `complete-aili-workflow-orchestration` queue, Packages 1–11 record lightweight savepoints containing complete behavior scope, files changed, unresolved items, and next package. Generic queues use the same lightweight savepoint fields without inheriting that numbering. Optional commands or diff feedback are not package closure or independent quality gates.
153
+
154
+ ## Anti-Pseudo-Completion Checks
155
+
156
+ Reject pseudo-completion when:
157
+
158
+ - prior findings are unresolved or not explicitly accepted/out-of-scope;
159
+ - verification output is stale, missing, partial, or not tied to the exact reviewed target;
160
+ - a lane reports success without anchors, inspected scope, lane status, and skipped-check reasons;
161
+ - tasks, specs, test-plan items, or accepted requirements lack implementation/evidence coverage;
162
+ - dirty paths are unknown or unrelated to the claimed scope;
163
+ - skipped checks lack a reason and risk;
164
+ - the report claims to replace PR review without target/base metadata, inspected files, checks, findings, and re-review evidence.
165
+
166
+ ## Repair and Re-Review Loop
167
+
168
+ 1. Resolve target and write/update the categorized report.
169
+ 2. Classify findings before repair.
170
+ 3. If repair is authorized, select one scoped repair package; ROSE works directly unless one fresh assignment independently passes the delegation gate.
171
+ 4. Apply at most one targeted repair and rerun the smallest affected check once.
172
+ 5. Reconcile the changed finding directly. Use a new read-only context only when changed evidence creates a separately justified capability gap; never resume the original context or launch an automatic review cycle.
173
+ 6. Keep verdict `REREVIEW_REQUIRED` until the affected finding has fresh direct or independently justified evidence; report any remaining blocker instead of starting another round.
174
+
175
+ ## Output Contract
176
+
177
+ ```text
178
+ LOCAL REVIEW STATUS: BLOCKED | NEEDS_FIXES | NEEDS_REVIEW | PASS_WITH_UNVERIFIED | PASS | REPAIRING | REREVIEW_REQUIRED
179
+ CONFIDENCE: HIGH | MED | LOW | VERY LOW | UNKNOWN
180
+
181
+ TARGET:
182
+ - Mode:
183
+ - Scope/base/ref/commit/PR/change:
184
+ - Report path or chat-only waiver:
185
+
186
+ SOURCE ARTIFACTS:
187
+ - Reviewed:
188
+ - Missing/stale/unavailable:
189
+
190
+ LANES AND CHECKS:
191
+ - Ran:
192
+ - Skipped with reason/risk:
193
+ - Re-review required:
194
+
195
+ FINDINGS:
196
+ - [critical|high|medium|low|suggestion|unverified] category - evidence - required action - owner - status - re-review requirement
197
+
198
+ REPAIR PLAN:
199
+ - Authorized: yes | no
200
+ - Packages or N/A:
201
+
202
+ UNVERIFIED / ACCEPTED RISK:
203
+ - <item or N/A>
204
+
205
+ NEXT:
206
+ - <fix, re-review, user decision, or ship remains separate>
207
+ ```
@@ -0,0 +1,33 @@
1
+ # addyosmani Code Review Rubric Adaptation
2
+
3
+ ## Provenance
4
+
5
+ | Field | Value |
6
+ |---|---|
7
+ | Upstream source | `https://github.com/addyosmani/agent-skills` |
8
+ | Upstream HEAD | `8c6530305396f341b5da7201cf1f7e390fdb863f` |
9
+ | Source paths | `agents/code-reviewer.md`, `skills/code-review-and-quality/SKILL.md` |
10
+ | Source blobs | `96cac1d79edca4a9231cbe6af50415b5e4d6cf42`, `5efda7afb5d0e4a5393c5a7da84e15b197f7b5b6` |
11
+ | License | MIT License, Copyright 2025 Addy Osmani |
12
+ | Copy/adapt scope | Adapted review dimensions, severity vocabulary, spec/task-first review order, verification story, and actionable-fix rules; upstream prompt is not copied wholesale. |
13
+ | Rationale | The upstream rubric is concise and matches AILI's existing `code-reviewer` lane. |
14
+
15
+ ## OpenCode / AILI adaptation boundaries
16
+
17
+ - Keep AILI's hidden `agents/code-reviewer.md` as a read-only OpenCode subagent.
18
+ - Do not route through `/review`; OpenCode owns that built-in command.
19
+ - Do not make code-reviewer spawn other personas.
20
+ - Do not convert suggestions into blockers unless evidence shows accepted-scope risk.
21
+
22
+ ## Activated AILI behavior
23
+
24
+ - Read the spec, task, issue, or OpenSpec source artifact before judging implementation.
25
+ - Review tests first when tests exist; tests reveal intent and coverage.
26
+ - Evaluate every change across five axes: correctness, readability, architecture, security, and performance.
27
+ - Require a verification story: tests reviewed, build/type/lint status if provided, manual/static evidence, skipped checks, and remaining `Unverified` items.
28
+ - Use severity vocabulary: `Critical`, `Important`, and `Suggestion` in review-lane output, then map to local-review severities and verdicts during ROSE reconciliation.
29
+ - Every Critical/Important finding needs file:line evidence, a concrete failure mode, a concrete fix recommendation, and a proof note explaining why existing guards do not already prevent it.
30
+ - Use uncertainty/proof gates: if evidence is incomplete, downgrade, mark `Unverified`, or recommend a focused follow-up instead of guessing.
31
+ - Zero findings is valid when the review records inspected scope, evidence, skipped checks, and confidence.
32
+ - Prefer structural remedies that remove complexity or duplicate logic rather than style-only commentary.
33
+ - Do not block for subjective rewrites when the change improves the codebase, follows project conventions, and has no accepted-scope risk.
@@ -0,0 +1,26 @@
1
+ # Codex and GitHub Review Compatibility
2
+
3
+ ## Provenance
4
+
5
+ | Field | Value |
6
+ |---|---|
7
+ | Source type | Official OpenAI Codex documentation and GitHub PR review behavior, used as behavior-only guidance |
8
+ | Copy/adapt scope | No official documentation prose is copied; this file summarizes compatibility behaviors for AILI. |
9
+ | Rationale | `/local-review` should produce evidence and reports that remain compatible with external Codex/GitHub PR review flows without depending on cloud mutation. |
10
+
11
+ ## OpenCode / AILI adaptation boundaries
12
+
13
+ - Do not copy official Codex or GitHub documentation text.
14
+ - Do not require Codex Cloud, GitHub automatic review, PR comments, PR reviews, or push permissions for local review.
15
+ - Do not run `gh api`, `gh pr checkout`, `gh pr comment`, `gh pr review`, `gh pr merge`, `gh pr create`, `gh repo clone`, or equivalent remote-mutating commands in `/local-review --pr`.
16
+ - Do not treat GitHub PR comment style as the only report format; AILI keeps persistent local reports first.
17
+
18
+ ## Activated AILI behavior
19
+
20
+ - Keep `AGENTS.md` and project-local rules review-friendly: local review lanes must read the nearest applicable rules when they constrain findings.
21
+ - Support PR-style focus instructions through `/local-review --focus <text>` and report the focus in the target metadata.
22
+ - In PR mode, gather metadata and diff only through the exact GitHub CLI allowlist `gh pr view`, `gh pr diff`, and `gh pr list --head` when available.
23
+ - Map high-priority PR-style findings into AILI `Critical` or `Important` findings with concrete failure modes and fixes.
24
+ - Preserve review/fix parity locally: review produces a categorized report first; approved repair creates scoped edit/test packages; affected findings require re-review before closure.
25
+ - Keep GitHub mutation as a separate, explicit, non-default user action outside `/local-review`.
26
+ - If Codex/GitHub metadata is unavailable, mark that lane skipped or `Unverified` with reason and risk instead of claiming PR parity.
@@ -0,0 +1,40 @@
1
+ # ECC Code Review Command Adaptation
2
+
3
+ ## Provenance
4
+
5
+ | Field | Value |
6
+ |---|---|
7
+ | Upstream source | `https://github.com/affaan-m/ECC` |
8
+ | Upstream HEAD | `49128b5763b7ac0b50acef35ac0bcca08d1576af` |
9
+ | Source path | `commands/code-review.md` |
10
+ | Source blob | `2382c59968231c205f9cf9cffa9013f480899a9c` |
11
+ | License | MIT License, Copyright 2026 Affaan Mustafa |
12
+ | Copy/adapt scope | Adapted workflow structure and checklist concepts; no wholesale command copy is active. |
13
+ | Rationale | ECC's command contains the closest local/PR review target model for `/local-review`. |
14
+
15
+ ## OpenCode / AILI adaptation boundaries
16
+
17
+ - Do not add an ECC-named top-level command.
18
+ - Do not override OpenCode's built-in `/review`.
19
+ - Do not activate `.claude` paths, Claude-only tool names, `gh api`, GitHub review/comment/merge commands, or ECC artifact locations.
20
+ - Do not activate remote mutation defaults; `/local-review --pr` remains read-only.
21
+ - Codex/GitHub official docs remain behavior-only references and are not copied here.
22
+
23
+ ## Activated AILI behavior
24
+
25
+ - Select mode from explicit target syntax: default local changes, `--base <branch>`, `--commit <sha>`, `--pr <url|number>`, `--change <id|path>`, `--focus <text>`, or `--repair`.
26
+ - Gather a target inventory before findings: changed files, untracked files, base/ref/commit/PR/change metadata, unavailable metadata, and skipped target lanes.
27
+ - Read changed files in full before making high-confidence correctness, security, data-loss, compatibility, or test findings; this is the active full-file review rule.
28
+ - Inspect relevant tests, config, docs, AGENTS rules, manifests, source artifacts, and callers/consumers when a finding depends on integration behavior.
29
+ - Classify findings with severity, category, evidence anchor, required fix, owner, status, and re-review requirement.
30
+ - Run available validation appropriate to the repository; skipped or unavailable checks must include reason and risk.
31
+ - Write a persistent categorized report for non-trivial targets before repair begins.
32
+ - Map ECC `APPROVE`/`REQUEST CHANGES`/`BLOCK` into local-review verdicts: `PASS`, `PASS_WITH_UNVERIFIED`, `NEEDS_FIXES`, `NEEDS_REVIEW`, `BLOCKED`, `REPAIRING`, and `REREVIEW_REQUIRED`.
33
+ - Treat zero findings as valid only when target scope, full-context inspection, and verification/skipped-check evidence are recorded.
34
+
35
+ ## Rejected upstream behavior
36
+
37
+ - Publishing GitHub reviews, approving PRs, requesting changes on GitHub, posting comments, or using GitHub API comment endpoints.
38
+ - Falling back from PR mode to unsafe shell parsing or raw user-provided PR arguments.
39
+ - Storing reports in `.claude` directories or any ECC-specific artifact tree.
40
+ - Treating validation pass alone as review approval without source/context inspection.
@@ -0,0 +1,33 @@
1
+ # Graphify Local-Review Adapter
2
+
3
+ [FRAME] This adapter may consume already-produced output from the official globally installed Graphify skill as optional architecture context. It does not install, register, configure, launch, update, or remove Graphify.
4
+
5
+ ## Positive trigger
6
+
7
+ - Use this adapter only inside an explicit `/local-review` when an existing Graphify result is already available and directly relevant to an architecture, ownership, boundary, coupling, or hotspot review question.
8
+ - Consume at most one scoped result; do not ingest a complete graph or broad report when the review question can be answered from current source and tests.
9
+ - If no usable result exists, continue without Graphify. Do not create or refresh one from this gate.
10
+
11
+ ## Evidence routing
12
+
13
+ - Treat Graphify as upstream snapshot/navigation evidence only.
14
+ - Use CodeGraph or current files for exact symbols, implementations, call paths, tests, dirty-state impact, and current behavior.
15
+ - Reconcile every Graphify lead against current source, tests, accepted artifacts, and Git state before reporting a finding.
16
+ - When Graphify conflicts with current evidence or its freshness is unknown, current evidence wins and the Graphify claim remains `Unverified`.
17
+ - Do not duplicate the same discovery through Graphify, CodeGraph, and broad grep; choose one owner for the question and narrow follow-up reads.
18
+
19
+ ## Upstream ownership
20
+
21
+ [KNOWN|EXTERNAL] The accepted official CLI and global Agent-Skills commands are `uv tool install graphifyy` and `graphify install --platform agents`. Source: immutable Graphify `v0.9.20` README and `graphify/install.py` recorded in `openspec/changes/improve-context-maps-and-session-handoffs/design.md`.
22
+
23
+ - Installation and global registration are owned by the guided installer, not `/local-review`, and require separate exact approvals.
24
+ - A future project build, update, query, path, or explain operation is a different operation with its own exact target/effect approval.
25
+ - This repository owns no Graphify wheel, lock, profile, venv, project index, parser, launcher, hook, plugin, backend, server, scheduler, or support/qualification claim.
26
+
27
+ ## Local-review boundaries
28
+
29
+ - Never invoke `graphify`, `/graphify`, `uv`, a Graphify backend, or a Graphify server from this gate.
30
+ - Never install the OpenCode platform plugin or mutate `.opencode`, hooks, `AGENTS.md`, Git state, or project graph output.
31
+ - Never turn Graphify output into correctness, security, acceptance, completion, SHIP, merge, archive, or release evidence.
32
+ - Keep absolute paths, private data, full graph payloads, and raw logs out of the review report; cite a bounded existing artifact/result and current-file evidence instead.
33
+ - Findings remain advisory until the normal local-review evidence and verdict rules resolve them.
@@ -0,0 +1,51 @@
1
+ # Review Orchestration Adaptation
2
+
3
+ ## Provenance
4
+
5
+ | Field | Value |
6
+ |---|---|
7
+ | Upstream source | `https://github.com/affaan-m/ECC` |
8
+ | Upstream HEAD | `49128b5763b7ac0b50acef35ac0bcca08d1576af` |
9
+ | Source paths | `commands/orch-review.md`, `commands/multi-plan.md`, `commands/multi-execute.md`, `commands/multi-backend.md`, `commands/multi-frontend.md`, `commands/multi-workflow.md` |
10
+ | Source blobs | `5216c7df157a9099214c122bc096e9693730ac77`, `b50912b1f0900ed34935228d973dd92902b97342`, `167a9b559e54b2caa4ad0700635cf5c9b1a367d9`, `95cc95d831d65779d86203f446b043cbee0af66a`, `fc1c402d985f46baf31cacf465d1db2f6c0ce3da`, `5458945c22a20eaa43eb332f53db7a7da1d2a408` |
11
+ | License | MIT License, Copyright 2026 Affaan Mustafa |
12
+ | Copy/adapt scope | Adapted evidence reconciliation, fail-closed missing-evidence handling, dedupe, and adversarial finding checks; upstream fan-out and phase machinery are not active defaults. |
13
+ | Rationale | Selected ECC evidence patterns strengthen proactive trigger-gated ROSE review without creating untriggered automatic lane dispatch or a broader command surface. |
14
+
15
+ ## Secondary provenance
16
+
17
+ | Field | Value |
18
+ |---|---|
19
+ | Upstream source | `https://github.com/addyosmani/agent-skills` |
20
+ | Upstream HEAD | `8c6530305396f341b5da7201cf1f7e390fdb863f` |
21
+ | Source path | `references/orchestration-patterns.md` |
22
+ | Source blob | `09cddd31d52a95be1d9bca814547d184b9945e44` |
23
+ | License | MIT License, Copyright 2025 Addy Osmani |
24
+ | Copy/adapt scope | Adapted direct invocation, single-persona command, optional independently justified evidence joins, and research isolation; automatic fan-out and Claude-only runtime details are not active. |
25
+
26
+ ## OpenCode / AILI adaptation boundaries
27
+
28
+ - Do not add public `multi-*` commands, ECC-named commands, or router personas.
29
+ - Do not activate external workflow runtimes, Agent Teams, Claude-specific team/tool assumptions, Codex/Gemini runtime dependencies, or `ccg-workflow`.
30
+ - ROSE/MainAgent is the only orchestrator and the only final decision owner.
31
+ - Personas do not invoke other personas; a worker may return one concrete missing-capability need to ROSE but cannot start a follow-up lane.
32
+ - Review, security, convergence, and test-analysis lanes are read-only unless their specific lane contract is a bounded test runner with no source edits.
33
+
34
+ ## Activated AILI behavior
35
+
36
+ - Direct invocation remains preferred for one perspective on one artifact.
37
+ - Single-persona command behavior stays scoped to `/local-review`; it routes target resolution and report state, not a broad router command.
38
+ - Direct ROSE review is the default. At most one auxiliary capability may use up to two fresh independent read-only contexts only when a concrete evidence gap and concurrency benefit justify them.
39
+ - Each lane packet carries target identity, accepted scope, source artifacts, diff/files, verification evidence, skipped-lane constraints, artifact placement, forbidden remote mutation, expected status vocabulary, and missing-evidence handling.
40
+ - Treat a selected auxiliary result that fails, is empty/status-less, lacks anchors, or cannot inspect required context as missing evidence; do not resume it or dispatch an automatic retry.
41
+ - Dedupe findings by affected file/artifact, failure mode, and required action; preserve the highest defensible severity.
42
+ - Split findings into blocking and advisory buckets: confirmed Critical/Important or unverifiable high-risk findings block; suggestions and refuted findings remain advisory.
43
+ - Use adversarial verification for Critical/Important findings: check whether context, tests, types, existing guards, or project rules disprove the finding before blocking.
44
+ - When independently justified parallel evidence was actually used, reconcile its compact results before relying on the joined claim; do not add phase checkpoints or lanes merely because work has phases.
45
+
46
+ ## Rejected upstream behavior
47
+
48
+ - A workflow tool owning approval or publish decisions.
49
+ - Raw PR argument shell use.
50
+ - Any GitHub comment, review, approve, merge, checkout, clone, push, or API mutation from review mode.
51
+ - Replacing `/ideate`, `/define`, `/build`, or `/ship` with ECC multi-agent commands.
@@ -0,0 +1,46 @@
1
+ # Review and Repair Lane Adaptation
2
+
3
+ ## Provenance
4
+
5
+ | Field | Value |
6
+ |---|---|
7
+ | Upstream source | `https://github.com/affaan-m/ECC` |
8
+ | Upstream HEAD | `49128b5763b7ac0b50acef35ac0bcca08d1576af` |
9
+ | Source paths | `agents/code-reviewer.md`, `agents/security-reviewer.md`, `agents/pr-test-analyzer.md`, `agents/build-error-resolver.md`, `commands/build-fix.md`, and ECC catalog entries for E2E, documentation lookup, TDD, verification loop, API/backend/frontend/language/domain skills |
10
+ | Source blobs explicitly inspected | `af791188ac87321f749a96f140a85c739303f453`, `568351bbc710009acba3e4c32282c436291a34c8` |
11
+ | License | MIT License, Copyright 2026 Affaan Mustafa |
12
+ | Copy/adapt scope | Adapted lane duties, repair-loop safety, build-fix loop, confidence gates, and trigger boundaries; no upstream agent is copied wholesale. |
13
+ | Rationale | ECC supplies useful specialist review/repair lane seeds, but AILI keeps review read-only and routes fixes through separate edit/test lanes. |
14
+
15
+ ## OpenCode / AILI adaptation boundaries
16
+
17
+ - Review lanes remain read-only and must not repair their own findings.
18
+ - Repair work must be explicit, scoped, separately owned, verified, and re-reviewed.
19
+ - Do not activate Claude-only tools, ECC tool names, `.claude` artifact paths, `ccg-workflow`, or Codex/Gemini runtime dependencies.
20
+ - Do not add dependencies, lockfile changes, or remote mutation commands unless a separate user-approved task explicitly authorizes them.
21
+ - Use existing AILI skills where equivalent skills already exist instead of importing duplicate ECC skill bodies.
22
+
23
+ ## Activated AILI behavior
24
+
25
+ ### Review lanes
26
+
27
+ - `code-reviewer`: use confidence filtering, exact evidence anchors, proof requirements for Critical/Important findings, false-positive suppression, and zero-findings-is-valid behavior.
28
+ - `security-auditor`: trigger on auth, permissions, secrets, shell/installers, dependency changes, network, storage, user input, and data-loss surfaces; report exploit path and concrete mitigation without editing.
29
+ - `pr-test-analyzer`: map changed behavior to tests, quality of assertions, changed-test risk, coverage gaps, and focused verification commands.
30
+ - `test-engineer` / coverage lanes: verify behavior-first tests, regressions, skipped checks, and adequacy of the verification story.
31
+ - `ai-regression-scout` and `silent-failure-reviewer`: trigger on prompts, agents, skills, routing, static fixtures, false PASS risk, swallowed errors, stale evidence, or misleading reports.
32
+ - Browser/E2E lanes: only when UI/browser behavior changed and artifact placement is approved; no durable screenshots/traces without repository-local placement.
33
+
34
+ ### Repair lanes
35
+
36
+ - Build/type repair follows ECC `build-fix` discipline: detect the build system, group errors, fix one error class at a time, rerun focused verification, and stop on repeated failure, deeper architecture need, dependency need, or more-errors-than-fixed regression.
37
+ - Documentation repair is allowed only when behavior/config/public workflow docs are made wrong by the task; otherwise report docs drift for a scoped follow-up.
38
+ - Refactor cleanup is advisory unless the current task explicitly includes cleanup or the finding blocks acceptance.
39
+ - E2E/browser repair requires explicit artifact placement and must avoid production data mutation.
40
+ - Domain/language review is conditional: activate TypeScript/Node, Python, shell, docs, packaging, API/backend/frontend, database, ML/CUDA, or mobile lanes only when the changed surface uses that domain.
41
+
42
+ ## Deferred or rejected ECC lane candidates
43
+
44
+ - Loop operators and harness optimizers are not activated as autonomous agents; AILI keeps orchestration under ROSE and uses bounded package queues.
45
+ - Language/domain specialists are reference checklists, not new top-level commands or always-on personas.
46
+ - Documentation lookup remains source-driven research only when current user/task contract allows external lookup and no secrets are exposed.
@@ -0,0 +1,61 @@
1
+ # Upstream Review Provenance
2
+
3
+ ## Scope
4
+
5
+ [COMPUTED from Package 5 upstream scout evidence] This reference records the active and deferred upstream candidates for adapting local-review behavior, without copying full upstream prompts, commands, agents, or documentation text in this package.
6
+
7
+ [COMPUTED from Package 5A implementation evidence] Tasks 5A.2-5A.8 are now activated through focused AILI reference files, core reviewer updates, orchestration contract updates, and static fixture checks rather than public ECC command imports or wholesale upstream prompt dumps.
8
+
9
+ ## Active source selection
10
+
11
+ [COMPUTED from Package 5 upstream scout evidence] `affaan-m/ECC` and `addyosmani/agent-skills` are the active derivative-reference sources for future `/local-review` adaptation work.
12
+
13
+ [COMPUTED from Package 5 upstream scout evidence] Official Codex review documentation is behavior-only guidance for review/fix-loop compatibility and must not be copied as prompt or documentation text.
14
+
15
+ [INFERRED from Package 5 upstream scout evidence] `sifxprime/kodelyth-ecc`, `elainesmithburkel-code/everything-claude-code`, and `cminn10/ecc2cursor` are not primary sources for this change and remain deferred or non-primary unless later provenance, trigger-fit, and OpenCode compatibility checks justify activation.
16
+
17
+ ## Candidate inventory
18
+
19
+ | Source URL | License | Source path(s) | Confidence | Intended use | Status | Adaptation notes |
20
+ |---|---|---|---|---|---|---|
21
+ | `https://github.com/affaan-m/ECC` | MIT | `commands/code-review.md` at SHA `2382c599...`, size `8179` | HIGH from upstream scout packet | Primary review-command reference for target selection, full-file/context reading, validation, verdict/report, PR-mode lessons, and repair/re-review workflow ideas | active-reference | Preserve source URL/path/SHA and MIT notice for copied/adapted material; adapt into AILI `/local-review` references rather than adding an ECC-named command; replace Claude/ECC paths, tool calls, agent names, and runtime assumptions with OpenCode/AILI-safe equivalents; avoid broad prompt copying in this package. |
22
+ | `https://github.com/affaan-m/ECC` | MIT | `commands/orch-review.md` at SHA `5216c7d...`; `commands/build-fix.md` at SHA `568351b...`; `commands/multi-plan.md` at SHA `b50912b...`; `commands/multi-execute.md` at SHA `167a9b5...`; `commands/multi-backend.md` at SHA `95cc95d...`; `commands/multi-frontend.md` at SHA `fc1c402d...`; `commands/multi-workflow.md` at SHA `5458945...` | HIGH from current task evidence and focused fetch | Evidence reconciliation, blocking/advisory split, adversarial finding checks, and bounded repair concepts; upstream fan-out/phase machinery is reference-only | active-reference | Activated only through proactive trigger-gated ROSE rules; public `multi-*` commands, untriggered automatic swarms, external workflow runtimes, and remote mutation behavior are rejected. |
23
+ | `https://github.com/affaan-m/ECC` | MIT | `agents/code-reviewer.md` at SHA `af79118...`; `agents/security-reviewer.md`; `agents/pr-test-analyzer.md`; `agents/build-error-resolver.md`; related ECC catalog skills under `.agents/skills/*` | HIGH for explicit seeds; MED for catalog-wide categories | Review/repair lane seeds: confidence/proof gates, security, test coverage analysis, build-error repair, E2E, docs lookup, TDD, verification loop, API/backend/frontend/domain/language review checklists | active-reference with conditional triggers | Activated as lane/checklist behavior only; no wholesale agent copy, no reviewer self-repair, no dependency changes, and no `.claude`/Claude-only tool assumptions. |
24
+ | `https://github.com/addyosmani/agent-skills` | MIT | `agents/code-reviewer.md` at SHA `96cac1d...`, size `3801` | HIGH from upstream scout packet | Active rubric reference for five-axis review, Critical/Important/Suggestion classification, spec/task-first reading, concrete fix guidance, and uncertainty discipline | active-reference | Preserve source URL/path/SHA and MIT notice for copied/adapted material; adapt the review discipline into local review lane rules rather than pasting the complete upstream agent; reconcile severity vocabulary with local-review verdicts and existing AILI report tables. |
25
+ | `https://github.com/addyosmani/agent-skills` | MIT | `skills/code-review-and-quality/SKILL.md` at SHA `5efda7a...`; `references/orchestration-patterns.md` at SHA `09cddd3...` | HIGH from current task evidence and focused fetch | Five-axis review evidence, change sizing, verification story, severity, direct invocation, single-persona command, optional evidence joins, and research isolation | active-reference | Activated under proactive trigger-gated AILI review rules; untriggered automatic fan-out and Claude-specific platform sections are not active. |
26
+ | Official OpenAI Codex review docs | Official docs; do not copy text | GitHub review docs covering `@codex review`, automatic PR review, nearest `AGENTS.md` review guidelines, focus instructions, and high-priority findings | HIGH for behavior guidance from upstream scout packet | Compatibility guidance for local PR-style review, focus text, high-priority finding mapping, and local review/fix parity | active-reference, behavior-only | Do not copy docs text; use only behavior patterns. Keep `/local-review --pr` read-only unless separate approval authorizes remote mutation outside review mode. |
27
+ | `https://github.com/sifxprime/kodelyth-ecc` | MIT | `commands/code-review.md` at SHA `8189f951...` | MED from upstream scout packet | Separate or fork-like comparison candidate if primary ECC leaves ambiguity | deferred | Treat as non-primary. Use only for later comparison after provenance and divergence checks; do not mix with primary ECC-derived material without recording source-specific scope. |
28
+ | `https://github.com/elainesmithburkel-code/everything-claude-code` | MIT per upstream scout packet | mirror/candidate paths not activated in this package | LOW from upstream scout packet | Possible mirror/candidate for broad Claude-code review patterns | deferred | Lower confidence; do not activate without fresh provenance and copied-scope evidence. |
29
+ | `https://github.com/cminn10/ecc2cursor` | MIT | candidate paths not activated in this package | LOW from upstream scout packet | Possible cursor-port reference, not a primary review source | rejected for primary review source; deferred for compatibility comparison | Do not use as the authoritative review source for `/local-review`; revisit only if later Cursor/OpenCode compatibility comparison is explicitly scoped. |
30
+
31
+ ## Copy/adapt rules for future packages
32
+
33
+ [COMPUTED from accepted Package 5 task contract] Preserve MIT license/provenance whenever ECC or addyosmani material is copied or adapted.
34
+
35
+ [COMPUTED from accepted Package 5 task contract] Record source URL, source path, commit/SHA when known, copied scope, adapted scope, and adaptation rationale in the affected reference or implementation file.
36
+
37
+ [COMPUTED from accepted Package 5 task contract] Replace Claude/ECC-specific tool names, file paths, command names, agent names, permissions, and runtime assumptions with OpenCode/AILI-safe equivalents before activating imported behavior.
38
+
39
+ [COMPUTED from accepted Package 5 task contract] Avoid over-triggering by adding precise trigger and near-miss boundaries for every adapted agent, lane, skill, or reference.
40
+
41
+ [COMPUTED from accepted Package 5 task contract] Keep long copied/adapted material in reference files rather than always-loaded prompts whenever possible.
42
+
43
+ [COMPUTED from accepted Package 5 task contract] Do not copy Codex documentation text; use official Codex review docs only for behavior-compatible local workflow guidance.
44
+
45
+ [COMPUTED from accepted Package 5 task contract] Do not copy/adapt ECC agents, ECC skills, orchestration commands, or addyosmani rubrics wholesale in this provenance package; later packages must perform scoped adaptation and verification separately.
46
+
47
+ ## Package 5A activated reference files
48
+
49
+ | Task | Activated artifact(s) | Evidence status |
50
+ |---|---|---|
51
+ | 5A.2 | `references/ecc-code-review-adaptation.md`; `/local-review` skill pointers | active/completed after static checks |
52
+ | 5A.3 | `references/review-repair-lane-adaptation.md`; `agents/code-reviewer.md`; review-pipeline lane notes | active/completed after static checks |
53
+ | 5A.4 | `references/review-repair-lane-adaptation.md`; conditional ECC skill catalog mapping | active/completed after static checks |
54
+ | 5A.5 | `references/orchestration-adaptation.md`; `review-pipeline`; `parallel-subagent-dispatch`; `subagent-task-packet.md` | active/completed after static checks |
55
+ | 5A.6 | `references/addyosmani-code-review-rubric.md`; `agents/code-reviewer.md` | active/completed after static checks |
56
+ | 5A.7 | `references/codex-github-compatibility.md`; `/local-review` skill and command boundaries | active/completed after static checks |
57
+ | 5A.8 | `scripts/harness_fixture_check.py`; `docs/harness/fixtures/command-routing-fixtures.yaml` | active/completed after static checks |
58
+
59
+ ## Limits
60
+
61
+ [UNVERIFIED] This reference is not legal advice and does not analyze license compatibility beyond recording the upstream license/provenance evidence. Re-check source URLs, license files, and exact copied scope before any future bulk copy/adaptation.