opencode-ship 0.8.0 → 0.10.0-rc.17

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 (137) hide show
  1. package/CHANGELOG.md +108 -0
  2. package/README.md +5 -3
  3. package/THIRD_PARTY_NOTICES.md +77 -18
  4. package/assets/agents/ship-controller.md +122 -0
  5. package/assets/agents/ship-final-spec-reviewer.md +87 -0
  6. package/assets/agents/ship-final-standards-reviewer.md +83 -0
  7. package/assets/agents/ship-planner.md +78 -0
  8. package/assets/agents/ship-task-builder.md +91 -0
  9. package/assets/agents/ship-task-reviewer.md +78 -0
  10. package/assets/commands/ship-deliver.md +30 -0
  11. package/assets/commands/ship-resume.md +28 -0
  12. package/assets/commands/ship-status.md +25 -0
  13. package/assets/skills/brainstorming/SKILL.md +160 -0
  14. package/assets/skills/brainstorming/spec-document-reviewer-prompt.md +49 -0
  15. package/assets/skills/brainstorming/visual-companion.md +298 -0
  16. package/assets/skills/code-review/SKILL.md +98 -0
  17. package/assets/skills/codebase-design/DEEPENING.md +37 -0
  18. package/assets/skills/codebase-design/DESIGN-IT-TWICE.md +44 -0
  19. package/assets/skills/codebase-design/SKILL.md +123 -0
  20. package/assets/skills/dispatching-parallel-agents/SKILL.md +176 -0
  21. package/assets/skills/domain-modeling/ADR-FORMAT.md +47 -0
  22. package/assets/skills/domain-modeling/CONTEXT-FORMAT.md +60 -0
  23. package/assets/skills/domain-modeling/SKILL.md +83 -0
  24. package/assets/skills/engineering-workflow/SKILL.md +125 -0
  25. package/assets/skills/engineering-workflow/domain.md +51 -0
  26. package/assets/skills/engineering-workflow/issue-tracker-github.md +45 -0
  27. package/assets/skills/engineering-workflow/issue-tracker-gitlab.md +46 -0
  28. package/assets/skills/engineering-workflow/issue-tracker-local.md +30 -0
  29. package/assets/skills/engineering-workflow/triage-labels.md +15 -0
  30. package/assets/skills/executing-plans/SKILL.md +73 -0
  31. package/assets/skills/grill-with-docs/SKILL.md +10 -14
  32. package/assets/skills/grilling/SKILL.md +21 -0
  33. package/assets/skills/handoff/SKILL.md +25 -0
  34. package/assets/skills/prototype/LOGIC.md +79 -0
  35. package/assets/skills/prototype/SKILL.md +35 -0
  36. package/assets/skills/prototype/UI.md +112 -0
  37. package/assets/skills/receiving-code-review/SKILL.md +214 -0
  38. package/assets/skills/requesting-code-review/SKILL.md +104 -0
  39. package/assets/skills/requesting-code-review/code-reviewer.md +172 -0
  40. package/assets/skills/research/SKILL.md +21 -0
  41. package/assets/skills/setup-engineering-workflow/SKILL.md +125 -0
  42. package/assets/skills/setup-engineering-workflow/domain.md +51 -0
  43. package/assets/skills/setup-engineering-workflow/issue-tracker-github.md +45 -0
  44. package/assets/skills/setup-engineering-workflow/issue-tracker-gitlab.md +46 -0
  45. package/assets/skills/setup-engineering-workflow/issue-tracker-local.md +30 -0
  46. package/assets/skills/setup-engineering-workflow/triage-labels.md +15 -0
  47. package/assets/skills/subagent-driven-development/SKILL.md +512 -0
  48. package/assets/skills/subagent-driven-development/implementer-prompt.md +142 -0
  49. package/assets/skills/subagent-driven-development/re-review-prompt.md +106 -0
  50. package/assets/skills/subagent-driven-development/task-reviewer-prompt.md +185 -0
  51. package/assets/skills/systematic-debugging/CREATION-LOG.md +119 -0
  52. package/assets/skills/systematic-debugging/SKILL.md +292 -0
  53. package/assets/skills/systematic-debugging/condition-based-waiting-example.ts +158 -0
  54. package/assets/skills/systematic-debugging/condition-based-waiting.md +115 -0
  55. package/assets/skills/systematic-debugging/defense-in-depth.md +122 -0
  56. package/assets/skills/systematic-debugging/find-polluter.sh +72 -0
  57. package/assets/skills/systematic-debugging/root-cause-tracing.md +169 -0
  58. package/assets/skills/systematic-debugging/test-academic.md +14 -0
  59. package/assets/skills/systematic-debugging/test-pressure-1.md +58 -0
  60. package/assets/skills/systematic-debugging/test-pressure-2.md +68 -0
  61. package/assets/skills/systematic-debugging/test-pressure-3.md +69 -0
  62. package/assets/skills/test-driven-development/SKILL.md +329 -0
  63. package/assets/skills/test-driven-development/writing-good-tests.md +198 -0
  64. package/assets/skills/to-spec/SKILL.md +84 -0
  65. package/assets/skills/to-tickets/SKILL.md +114 -0
  66. package/assets/skills/triage/AGENT-BRIEF.md +207 -0
  67. package/assets/skills/triage/OUT-OF-SCOPE.md +105 -0
  68. package/assets/skills/triage/SKILL.md +114 -15
  69. package/assets/skills/verification-before-completion/SKILL.md +129 -0
  70. package/assets/skills/wayfinder/SKILL.md +137 -0
  71. package/assets/skills/writing-plans/SKILL.md +177 -0
  72. package/assets/skills/writing-plans/plan-document-reviewer-prompt.md +49 -0
  73. package/dist/cli.js +1146 -435
  74. package/dist/core.js +210 -61
  75. package/dist/plugin.js +2368 -230
  76. package/package.json +3 -1
  77. package/schema/ship-config.schema.json +63 -2
  78. package/schema/ship-lock.schema.json +5 -3
  79. package/tests/plugin/plugin-load.test.mjs +85 -0
  80. package/vendor/mattpocock/LICENSE +30 -0
  81. package/vendor/obra/LICENSE +30 -0
  82. package/vendor/sources.json +976 -0
  83. package/vendor/superpowers/LICENSE +30 -0
  84. package/vendor/upstreams/mattpocock/skills/engineering/code-review/SKILL.md +89 -0
  85. package/vendor/upstreams/mattpocock/skills/engineering/codebase-design/DEEPENING.md +37 -0
  86. package/vendor/upstreams/mattpocock/skills/engineering/codebase-design/DESIGN-IT-TWICE.md +44 -0
  87. package/vendor/upstreams/mattpocock/skills/engineering/codebase-design/SKILL.md +114 -0
  88. package/vendor/upstreams/mattpocock/skills/engineering/domain-modeling/ADR-FORMAT.md +47 -0
  89. package/vendor/upstreams/mattpocock/skills/engineering/domain-modeling/CONTEXT-FORMAT.md +60 -0
  90. package/vendor/upstreams/mattpocock/skills/engineering/domain-modeling/SKILL.md +74 -0
  91. package/vendor/upstreams/mattpocock/skills/engineering/grill-with-docs/SKILL.md +7 -0
  92. package/vendor/upstreams/mattpocock/skills/engineering/prototype/LOGIC.md +79 -0
  93. package/vendor/upstreams/mattpocock/skills/engineering/prototype/SKILL.md +26 -0
  94. package/vendor/upstreams/mattpocock/skills/engineering/prototype/UI.md +112 -0
  95. package/vendor/upstreams/mattpocock/skills/engineering/research/SKILL.md +12 -0
  96. package/vendor/upstreams/mattpocock/skills/engineering/setup-matt-pocock-skills/SKILL.md +116 -0
  97. package/vendor/upstreams/mattpocock/skills/engineering/setup-matt-pocock-skills/domain.md +51 -0
  98. package/vendor/upstreams/mattpocock/skills/engineering/setup-matt-pocock-skills/issue-tracker-github.md +45 -0
  99. package/vendor/upstreams/mattpocock/skills/engineering/setup-matt-pocock-skills/issue-tracker-gitlab.md +46 -0
  100. package/vendor/upstreams/mattpocock/skills/engineering/setup-matt-pocock-skills/issue-tracker-local.md +30 -0
  101. package/vendor/upstreams/mattpocock/skills/engineering/setup-matt-pocock-skills/triage-labels.md +15 -0
  102. package/vendor/upstreams/mattpocock/skills/engineering/to-spec/SKILL.md +75 -0
  103. package/vendor/upstreams/mattpocock/skills/engineering/to-tickets/SKILL.md +105 -0
  104. package/vendor/upstreams/mattpocock/skills/engineering/triage/AGENT-BRIEF.md +207 -0
  105. package/vendor/upstreams/mattpocock/skills/engineering/triage/OUT-OF-SCOPE.md +105 -0
  106. package/vendor/upstreams/mattpocock/skills/engineering/triage/SKILL.md +112 -0
  107. package/vendor/upstreams/mattpocock/skills/engineering/wayfinder/SKILL.md +128 -0
  108. package/vendor/upstreams/mattpocock/skills/productivity/grilling/SKILL.md +12 -0
  109. package/vendor/upstreams/mattpocock/skills/productivity/handoff/SKILL.md +16 -0
  110. package/vendor/upstreams/obra/skills/brainstorming/SKILL.md +151 -0
  111. package/vendor/upstreams/obra/skills/brainstorming/spec-document-reviewer-prompt.md +49 -0
  112. package/vendor/upstreams/obra/skills/brainstorming/visual-companion.md +298 -0
  113. package/vendor/upstreams/obra/skills/dispatching-parallel-agents/SKILL.md +167 -0
  114. package/vendor/upstreams/obra/skills/executing-plans/SKILL.md +64 -0
  115. package/vendor/upstreams/obra/skills/receiving-code-review/SKILL.md +205 -0
  116. package/vendor/upstreams/obra/skills/requesting-code-review/SKILL.md +95 -0
  117. package/vendor/upstreams/obra/skills/requesting-code-review/code-reviewer.md +172 -0
  118. package/vendor/upstreams/obra/skills/subagent-driven-development/SKILL.md +503 -0
  119. package/vendor/upstreams/obra/skills/subagent-driven-development/implementer-prompt.md +142 -0
  120. package/vendor/upstreams/obra/skills/subagent-driven-development/re-review-prompt.md +106 -0
  121. package/vendor/upstreams/obra/skills/subagent-driven-development/task-reviewer-prompt.md +185 -0
  122. package/vendor/upstreams/obra/skills/systematic-debugging/CREATION-LOG.md +119 -0
  123. package/vendor/upstreams/obra/skills/systematic-debugging/SKILL.md +283 -0
  124. package/vendor/upstreams/obra/skills/systematic-debugging/condition-based-waiting-example.ts +158 -0
  125. package/vendor/upstreams/obra/skills/systematic-debugging/condition-based-waiting.md +115 -0
  126. package/vendor/upstreams/obra/skills/systematic-debugging/defense-in-depth.md +122 -0
  127. package/vendor/upstreams/obra/skills/systematic-debugging/find-polluter.sh +72 -0
  128. package/vendor/upstreams/obra/skills/systematic-debugging/root-cause-tracing.md +169 -0
  129. package/vendor/upstreams/obra/skills/systematic-debugging/test-academic.md +14 -0
  130. package/vendor/upstreams/obra/skills/systematic-debugging/test-pressure-1.md +58 -0
  131. package/vendor/upstreams/obra/skills/systematic-debugging/test-pressure-2.md +68 -0
  132. package/vendor/upstreams/obra/skills/systematic-debugging/test-pressure-3.md +69 -0
  133. package/vendor/upstreams/obra/skills/test-driven-development/SKILL.md +320 -0
  134. package/vendor/upstreams/obra/skills/test-driven-development/writing-good-tests.md +198 -0
  135. package/vendor/upstreams/obra/skills/verification-before-completion/SKILL.md +120 -0
  136. package/vendor/upstreams/obra/skills/writing-plans/SKILL.md +168 -0
  137. package/vendor/upstreams/obra/skills/writing-plans/plan-document-reviewer-prompt.md +49 -0
@@ -0,0 +1,976 @@
1
+ {
2
+ "version": 1,
3
+ "generatedAt": "2026-08-05T18:39:26.174Z",
4
+ "pins": {
5
+ "matt": "2ab958093e83e0ec752e6c1c5932da465bf23e0c",
6
+ "superpowers": "44c9b2d6e889982ac18c27d05a19fefe335194e1"
7
+ },
8
+ "sources": [
9
+ {
10
+ "skill": "setup-engineering-workflow",
11
+ "file": "SKILL.md",
12
+ "isSkill": true,
13
+ "repository": "mattpocock/skills",
14
+ "sourceRef": "2ab958093e83e0ec752e6c1c5932da465bf23e0c",
15
+ "upstreamPath": "skills/engineering/setup-matt-pocock-skills/SKILL.md",
16
+ "sourceSha256": "def265a8b15ffb8afc3f335d69e175ba9a7fe3991218984b0e49e8345cde3b20",
17
+ "localFrozenPath": "vendor/upstreams/mattpocock/skills/engineering/setup-matt-pocock-skills/SKILL.md",
18
+ "localFrozenSha256": "def265a8b15ffb8afc3f335d69e175ba9a7fe3991218984b0e49e8345cde3b20",
19
+ "localTarget": "assets/skills/setup-engineering-workflow/SKILL.md",
20
+ "localSha256": "67790c25cc6b4682ff3fe5bc8794e03619837686936f5bd4ce133c5fd45e2bd1",
21
+ "reuseMode": "adapted",
22
+ "license": "MIT",
23
+ "adaptationNote": "## Ship integration\n\nThis skill is part of the engineering profile shipped by\n`opencode-ship@1.0`. The strong planner child session is\nconfigured with `openai/gpt-5.6-sol` and the durable workflow\nstate lives under `<git-common-dir>/opencode-ship/`. All\nGitHub mutations go through Ship's typed tools; never use\n`gh api` or raw shell."
24
+ },
25
+ {
26
+ "skill": "setup-engineering-workflow",
27
+ "file": "domain.md",
28
+ "isSkill": false,
29
+ "repository": "mattpocock/skills",
30
+ "sourceRef": "2ab958093e83e0ec752e6c1c5932da465bf23e0c",
31
+ "upstreamPath": "skills/engineering/setup-matt-pocock-skills/domain.md",
32
+ "sourceSha256": "25be404b58798b3cb2d51c93dba2ab052fc3a425632185726ac3f5fcff193b99",
33
+ "localFrozenPath": "vendor/upstreams/mattpocock/skills/engineering/setup-matt-pocock-skills/domain.md",
34
+ "localFrozenSha256": "25be404b58798b3cb2d51c93dba2ab052fc3a425632185726ac3f5fcff193b99",
35
+ "localTarget": "assets/skills/setup-engineering-workflow/domain.md",
36
+ "localSha256": "25be404b58798b3cb2d51c93dba2ab052fc3a425632185726ac3f5fcff193b99",
37
+ "reuseMode": "unchanged",
38
+ "license": "MIT",
39
+ "adaptationNote": "Vendored companion file shipped verbatim from upstream."
40
+ },
41
+ {
42
+ "skill": "setup-engineering-workflow",
43
+ "file": "issue-tracker-github.md",
44
+ "isSkill": false,
45
+ "repository": "mattpocock/skills",
46
+ "sourceRef": "2ab958093e83e0ec752e6c1c5932da465bf23e0c",
47
+ "upstreamPath": "skills/engineering/setup-matt-pocock-skills/issue-tracker-github.md",
48
+ "sourceSha256": "52e9f9f1ec0f6d47c6785ac500708ac0521f34abb4cc5475b5dc747165dab17e",
49
+ "localFrozenPath": "vendor/upstreams/mattpocock/skills/engineering/setup-matt-pocock-skills/issue-tracker-github.md",
50
+ "localFrozenSha256": "52e9f9f1ec0f6d47c6785ac500708ac0521f34abb4cc5475b5dc747165dab17e",
51
+ "localTarget": "assets/skills/setup-engineering-workflow/issue-tracker-github.md",
52
+ "localSha256": "52e9f9f1ec0f6d47c6785ac500708ac0521f34abb4cc5475b5dc747165dab17e",
53
+ "reuseMode": "unchanged",
54
+ "license": "MIT",
55
+ "adaptationNote": "Vendored companion file shipped verbatim from upstream."
56
+ },
57
+ {
58
+ "skill": "setup-engineering-workflow",
59
+ "file": "issue-tracker-gitlab.md",
60
+ "isSkill": false,
61
+ "repository": "mattpocock/skills",
62
+ "sourceRef": "2ab958093e83e0ec752e6c1c5932da465bf23e0c",
63
+ "upstreamPath": "skills/engineering/setup-matt-pocock-skills/issue-tracker-gitlab.md",
64
+ "sourceSha256": "4470f2f64d015fba01af877233296b401bb0d44b5acb9572ffc3ff6b30e8de88",
65
+ "localFrozenPath": "vendor/upstreams/mattpocock/skills/engineering/setup-matt-pocock-skills/issue-tracker-gitlab.md",
66
+ "localFrozenSha256": "4470f2f64d015fba01af877233296b401bb0d44b5acb9572ffc3ff6b30e8de88",
67
+ "localTarget": "assets/skills/setup-engineering-workflow/issue-tracker-gitlab.md",
68
+ "localSha256": "4470f2f64d015fba01af877233296b401bb0d44b5acb9572ffc3ff6b30e8de88",
69
+ "reuseMode": "unchanged",
70
+ "license": "MIT",
71
+ "adaptationNote": "Vendored companion file shipped verbatim from upstream."
72
+ },
73
+ {
74
+ "skill": "setup-engineering-workflow",
75
+ "file": "issue-tracker-local.md",
76
+ "isSkill": false,
77
+ "repository": "mattpocock/skills",
78
+ "sourceRef": "2ab958093e83e0ec752e6c1c5932da465bf23e0c",
79
+ "upstreamPath": "skills/engineering/setup-matt-pocock-skills/issue-tracker-local.md",
80
+ "sourceSha256": "ed6add9fe3cdcd2d1ebb2a463cf0eb6a1a86df500f4922b31a1ab50f15b3a705",
81
+ "localFrozenPath": "vendor/upstreams/mattpocock/skills/engineering/setup-matt-pocock-skills/issue-tracker-local.md",
82
+ "localFrozenSha256": "ed6add9fe3cdcd2d1ebb2a463cf0eb6a1a86df500f4922b31a1ab50f15b3a705",
83
+ "localTarget": "assets/skills/setup-engineering-workflow/issue-tracker-local.md",
84
+ "localSha256": "ed6add9fe3cdcd2d1ebb2a463cf0eb6a1a86df500f4922b31a1ab50f15b3a705",
85
+ "reuseMode": "unchanged",
86
+ "license": "MIT",
87
+ "adaptationNote": "Vendored companion file shipped verbatim from upstream."
88
+ },
89
+ {
90
+ "skill": "setup-engineering-workflow",
91
+ "file": "triage-labels.md",
92
+ "isSkill": false,
93
+ "repository": "mattpocock/skills",
94
+ "sourceRef": "2ab958093e83e0ec752e6c1c5932da465bf23e0c",
95
+ "upstreamPath": "skills/engineering/setup-matt-pocock-skills/triage-labels.md",
96
+ "sourceSha256": "4f53c9b40ce2651e3611aa090eaedbd6dbc9b71ef8c5f7e65eac0d8263190d0d",
97
+ "localFrozenPath": "vendor/upstreams/mattpocock/skills/engineering/setup-matt-pocock-skills/triage-labels.md",
98
+ "localFrozenSha256": "4f53c9b40ce2651e3611aa090eaedbd6dbc9b71ef8c5f7e65eac0d8263190d0d",
99
+ "localTarget": "assets/skills/setup-engineering-workflow/triage-labels.md",
100
+ "localSha256": "4f53c9b40ce2651e3611aa090eaedbd6dbc9b71ef8c5f7e65eac0d8263190d0d",
101
+ "reuseMode": "unchanged",
102
+ "license": "MIT",
103
+ "adaptationNote": "Vendored companion file shipped verbatim from upstream."
104
+ },
105
+ {
106
+ "skill": "engineering-workflow",
107
+ "file": "SKILL.md",
108
+ "isSkill": true,
109
+ "repository": "mattpocock/skills",
110
+ "sourceRef": "2ab958093e83e0ec752e6c1c5932da465bf23e0c",
111
+ "upstreamPath": "skills/engineering/setup-matt-pocock-skills/SKILL.md",
112
+ "sourceSha256": "def265a8b15ffb8afc3f335d69e175ba9a7fe3991218984b0e49e8345cde3b20",
113
+ "localFrozenPath": "vendor/upstreams/mattpocock/skills/engineering/setup-matt-pocock-skills/SKILL.md",
114
+ "localFrozenSha256": "def265a8b15ffb8afc3f335d69e175ba9a7fe3991218984b0e49e8345cde3b20",
115
+ "localTarget": "assets/skills/engineering-workflow/SKILL.md",
116
+ "localSha256": "67790c25cc6b4682ff3fe5bc8794e03619837686936f5bd4ce133c5fd45e2bd1",
117
+ "reuseMode": "adapted",
118
+ "license": "MIT",
119
+ "adaptationNote": "## Ship integration\n\nThis skill is part of the engineering profile shipped by\n`opencode-ship@1.0`. The strong planner child session is\nconfigured with `openai/gpt-5.6-sol` and the durable workflow\nstate lives under `<git-common-dir>/opencode-ship/`. All\nGitHub mutations go through Ship's typed tools; never use\n`gh api` or raw shell.",
120
+ "reuseAliasOf": "setup-engineering-workflow"
121
+ },
122
+ {
123
+ "skill": "engineering-workflow",
124
+ "file": "domain.md",
125
+ "isSkill": false,
126
+ "repository": "mattpocock/skills",
127
+ "sourceRef": "2ab958093e83e0ec752e6c1c5932da465bf23e0c",
128
+ "upstreamPath": "skills/engineering/setup-matt-pocock-skills/domain.md",
129
+ "sourceSha256": "25be404b58798b3cb2d51c93dba2ab052fc3a425632185726ac3f5fcff193b99",
130
+ "localFrozenPath": "vendor/upstreams/mattpocock/skills/engineering/setup-matt-pocock-skills/domain.md",
131
+ "localFrozenSha256": "25be404b58798b3cb2d51c93dba2ab052fc3a425632185726ac3f5fcff193b99",
132
+ "localTarget": "assets/skills/engineering-workflow/domain.md",
133
+ "localSha256": "25be404b58798b3cb2d51c93dba2ab052fc3a425632185726ac3f5fcff193b99",
134
+ "reuseMode": "unchanged",
135
+ "license": "MIT",
136
+ "adaptationNote": "Vendored companion file shipped verbatim from upstream.",
137
+ "reuseAliasOf": "setup-engineering-workflow"
138
+ },
139
+ {
140
+ "skill": "engineering-workflow",
141
+ "file": "issue-tracker-github.md",
142
+ "isSkill": false,
143
+ "repository": "mattpocock/skills",
144
+ "sourceRef": "2ab958093e83e0ec752e6c1c5932da465bf23e0c",
145
+ "upstreamPath": "skills/engineering/setup-matt-pocock-skills/issue-tracker-github.md",
146
+ "sourceSha256": "52e9f9f1ec0f6d47c6785ac500708ac0521f34abb4cc5475b5dc747165dab17e",
147
+ "localFrozenPath": "vendor/upstreams/mattpocock/skills/engineering/setup-matt-pocock-skills/issue-tracker-github.md",
148
+ "localFrozenSha256": "52e9f9f1ec0f6d47c6785ac500708ac0521f34abb4cc5475b5dc747165dab17e",
149
+ "localTarget": "assets/skills/engineering-workflow/issue-tracker-github.md",
150
+ "localSha256": "52e9f9f1ec0f6d47c6785ac500708ac0521f34abb4cc5475b5dc747165dab17e",
151
+ "reuseMode": "unchanged",
152
+ "license": "MIT",
153
+ "adaptationNote": "Vendored companion file shipped verbatim from upstream.",
154
+ "reuseAliasOf": "setup-engineering-workflow"
155
+ },
156
+ {
157
+ "skill": "engineering-workflow",
158
+ "file": "issue-tracker-gitlab.md",
159
+ "isSkill": false,
160
+ "repository": "mattpocock/skills",
161
+ "sourceRef": "2ab958093e83e0ec752e6c1c5932da465bf23e0c",
162
+ "upstreamPath": "skills/engineering/setup-matt-pocock-skills/issue-tracker-gitlab.md",
163
+ "sourceSha256": "4470f2f64d015fba01af877233296b401bb0d44b5acb9572ffc3ff6b30e8de88",
164
+ "localFrozenPath": "vendor/upstreams/mattpocock/skills/engineering/setup-matt-pocock-skills/issue-tracker-gitlab.md",
165
+ "localFrozenSha256": "4470f2f64d015fba01af877233296b401bb0d44b5acb9572ffc3ff6b30e8de88",
166
+ "localTarget": "assets/skills/engineering-workflow/issue-tracker-gitlab.md",
167
+ "localSha256": "4470f2f64d015fba01af877233296b401bb0d44b5acb9572ffc3ff6b30e8de88",
168
+ "reuseMode": "unchanged",
169
+ "license": "MIT",
170
+ "adaptationNote": "Vendored companion file shipped verbatim from upstream.",
171
+ "reuseAliasOf": "setup-engineering-workflow"
172
+ },
173
+ {
174
+ "skill": "engineering-workflow",
175
+ "file": "issue-tracker-local.md",
176
+ "isSkill": false,
177
+ "repository": "mattpocock/skills",
178
+ "sourceRef": "2ab958093e83e0ec752e6c1c5932da465bf23e0c",
179
+ "upstreamPath": "skills/engineering/setup-matt-pocock-skills/issue-tracker-local.md",
180
+ "sourceSha256": "ed6add9fe3cdcd2d1ebb2a463cf0eb6a1a86df500f4922b31a1ab50f15b3a705",
181
+ "localFrozenPath": "vendor/upstreams/mattpocock/skills/engineering/setup-matt-pocock-skills/issue-tracker-local.md",
182
+ "localFrozenSha256": "ed6add9fe3cdcd2d1ebb2a463cf0eb6a1a86df500f4922b31a1ab50f15b3a705",
183
+ "localTarget": "assets/skills/engineering-workflow/issue-tracker-local.md",
184
+ "localSha256": "ed6add9fe3cdcd2d1ebb2a463cf0eb6a1a86df500f4922b31a1ab50f15b3a705",
185
+ "reuseMode": "unchanged",
186
+ "license": "MIT",
187
+ "adaptationNote": "Vendored companion file shipped verbatim from upstream.",
188
+ "reuseAliasOf": "setup-engineering-workflow"
189
+ },
190
+ {
191
+ "skill": "engineering-workflow",
192
+ "file": "triage-labels.md",
193
+ "isSkill": false,
194
+ "repository": "mattpocock/skills",
195
+ "sourceRef": "2ab958093e83e0ec752e6c1c5932da465bf23e0c",
196
+ "upstreamPath": "skills/engineering/setup-matt-pocock-skills/triage-labels.md",
197
+ "sourceSha256": "4f53c9b40ce2651e3611aa090eaedbd6dbc9b71ef8c5f7e65eac0d8263190d0d",
198
+ "localFrozenPath": "vendor/upstreams/mattpocock/skills/engineering/setup-matt-pocock-skills/triage-labels.md",
199
+ "localFrozenSha256": "4f53c9b40ce2651e3611aa090eaedbd6dbc9b71ef8c5f7e65eac0d8263190d0d",
200
+ "localTarget": "assets/skills/engineering-workflow/triage-labels.md",
201
+ "localSha256": "4f53c9b40ce2651e3611aa090eaedbd6dbc9b71ef8c5f7e65eac0d8263190d0d",
202
+ "reuseMode": "unchanged",
203
+ "license": "MIT",
204
+ "adaptationNote": "Vendored companion file shipped verbatim from upstream.",
205
+ "reuseAliasOf": "setup-engineering-workflow"
206
+ },
207
+ {
208
+ "skill": "grilling",
209
+ "file": "SKILL.md",
210
+ "isSkill": true,
211
+ "repository": "mattpocock/skills",
212
+ "sourceRef": "2ab958093e83e0ec752e6c1c5932da465bf23e0c",
213
+ "upstreamPath": "skills/productivity/grilling/SKILL.md",
214
+ "sourceSha256": "44331dda57f461db4fec3f2efb6ddabe7aaaa0a57ae0f88a883bc61aed8a0587",
215
+ "localFrozenPath": "vendor/upstreams/mattpocock/skills/productivity/grilling/SKILL.md",
216
+ "localFrozenSha256": "44331dda57f461db4fec3f2efb6ddabe7aaaa0a57ae0f88a883bc61aed8a0587",
217
+ "localTarget": "assets/skills/grilling/SKILL.md",
218
+ "localSha256": "58a6efb2e5ca1987619dfa51cd6d861e10cc8d73df9f37bbf8dbf063d8bab9fb",
219
+ "reuseMode": "adapted",
220
+ "license": "MIT",
221
+ "adaptationNote": "## Ship integration\n\nThis skill is part of the engineering profile shipped by\n`opencode-ship@1.0`. The strong planner child session is\nconfigured with `openai/gpt-5.6-sol` and the durable workflow\nstate lives under `<git-common-dir>/opencode-ship/`. All\nGitHub mutations go through Ship's typed tools; never use\n`gh api` or raw shell."
222
+ },
223
+ {
224
+ "skill": "domain-modeling",
225
+ "file": "ADR-FORMAT.md",
226
+ "isSkill": false,
227
+ "repository": "mattpocock/skills",
228
+ "sourceRef": "2ab958093e83e0ec752e6c1c5932da465bf23e0c",
229
+ "upstreamPath": "skills/engineering/domain-modeling/ADR-FORMAT.md",
230
+ "sourceSha256": "f1f36cd3f8d3b6474ddd5855da4e233bfc4ae1a1c5024909ccf11871819a41b2",
231
+ "localFrozenPath": "vendor/upstreams/mattpocock/skills/engineering/domain-modeling/ADR-FORMAT.md",
232
+ "localFrozenSha256": "f1f36cd3f8d3b6474ddd5855da4e233bfc4ae1a1c5024909ccf11871819a41b2",
233
+ "localTarget": "assets/skills/domain-modeling/ADR-FORMAT.md",
234
+ "localSha256": "f1f36cd3f8d3b6474ddd5855da4e233bfc4ae1a1c5024909ccf11871819a41b2",
235
+ "reuseMode": "unchanged",
236
+ "license": "MIT",
237
+ "adaptationNote": "Vendored companion file shipped verbatim from upstream."
238
+ },
239
+ {
240
+ "skill": "domain-modeling",
241
+ "file": "CONTEXT-FORMAT.md",
242
+ "isSkill": false,
243
+ "repository": "mattpocock/skills",
244
+ "sourceRef": "2ab958093e83e0ec752e6c1c5932da465bf23e0c",
245
+ "upstreamPath": "skills/engineering/domain-modeling/CONTEXT-FORMAT.md",
246
+ "sourceSha256": "b8cc318f2a4285b530e908b6bc43901c3c5cd11100362636bbc4216639bef597",
247
+ "localFrozenPath": "vendor/upstreams/mattpocock/skills/engineering/domain-modeling/CONTEXT-FORMAT.md",
248
+ "localFrozenSha256": "b8cc318f2a4285b530e908b6bc43901c3c5cd11100362636bbc4216639bef597",
249
+ "localTarget": "assets/skills/domain-modeling/CONTEXT-FORMAT.md",
250
+ "localSha256": "b8cc318f2a4285b530e908b6bc43901c3c5cd11100362636bbc4216639bef597",
251
+ "reuseMode": "unchanged",
252
+ "license": "MIT",
253
+ "adaptationNote": "Vendored companion file shipped verbatim from upstream."
254
+ },
255
+ {
256
+ "skill": "domain-modeling",
257
+ "file": "SKILL.md",
258
+ "isSkill": true,
259
+ "repository": "mattpocock/skills",
260
+ "sourceRef": "2ab958093e83e0ec752e6c1c5932da465bf23e0c",
261
+ "upstreamPath": "skills/engineering/domain-modeling/SKILL.md",
262
+ "sourceSha256": "152e2c97239affb12a60c5f4a7e74ab546a49ae169688c81f4e2ccc42dafa579",
263
+ "localFrozenPath": "vendor/upstreams/mattpocock/skills/engineering/domain-modeling/SKILL.md",
264
+ "localFrozenSha256": "152e2c97239affb12a60c5f4a7e74ab546a49ae169688c81f4e2ccc42dafa579",
265
+ "localTarget": "assets/skills/domain-modeling/SKILL.md",
266
+ "localSha256": "105692d392258ed1c7cde1f1e66c379705882c62701b50c1844289942bb3283c",
267
+ "reuseMode": "adapted",
268
+ "license": "MIT",
269
+ "adaptationNote": "## Ship integration\n\nThis skill is part of the engineering profile shipped by\n`opencode-ship@1.0`. The strong planner child session is\nconfigured with `openai/gpt-5.6-sol` and the durable workflow\nstate lives under `<git-common-dir>/opencode-ship/`. All\nGitHub mutations go through Ship's typed tools; never use\n`gh api` or raw shell."
270
+ },
271
+ {
272
+ "skill": "grill-with-docs",
273
+ "file": "SKILL.md",
274
+ "isSkill": true,
275
+ "repository": "mattpocock/skills",
276
+ "sourceRef": "2ab958093e83e0ec752e6c1c5932da465bf23e0c",
277
+ "upstreamPath": "skills/engineering/grill-with-docs/SKILL.md",
278
+ "sourceSha256": "610d091047bcfb9db0f75c057d15538481a721111579fc5ec7f83ad9131a2165",
279
+ "localFrozenPath": "vendor/upstreams/mattpocock/skills/engineering/grill-with-docs/SKILL.md",
280
+ "localFrozenSha256": "610d091047bcfb9db0f75c057d15538481a721111579fc5ec7f83ad9131a2165",
281
+ "localTarget": "assets/skills/grill-with-docs/SKILL.md",
282
+ "localSha256": "a8a3dc152c7d2a223f18d33ce5582a69117d903184375da3e21bee7c13812484",
283
+ "reuseMode": "adapted",
284
+ "license": "MIT",
285
+ "adaptationNote": "## Ship integration\n\nThis skill is part of the engineering profile shipped by\n`opencode-ship@1.0`. The strong planner child session is\nconfigured with `openai/gpt-5.6-sol` and the durable workflow\nstate lives under `<git-common-dir>/opencode-ship/`. All\nGitHub mutations go through Ship's typed tools; never use\n`gh api` or raw shell."
286
+ },
287
+ {
288
+ "skill": "triage",
289
+ "file": "AGENT-BRIEF.md",
290
+ "isSkill": false,
291
+ "repository": "mattpocock/skills",
292
+ "sourceRef": "2ab958093e83e0ec752e6c1c5932da465bf23e0c",
293
+ "upstreamPath": "skills/engineering/triage/AGENT-BRIEF.md",
294
+ "sourceSha256": "5b78d347cc53f6bcf7b875106005ccf5315055fa4cf75eb28d41e96ee426d27b",
295
+ "localFrozenPath": "vendor/upstreams/mattpocock/skills/engineering/triage/AGENT-BRIEF.md",
296
+ "localFrozenSha256": "5b78d347cc53f6bcf7b875106005ccf5315055fa4cf75eb28d41e96ee426d27b",
297
+ "localTarget": "assets/skills/triage/AGENT-BRIEF.md",
298
+ "localSha256": "5b78d347cc53f6bcf7b875106005ccf5315055fa4cf75eb28d41e96ee426d27b",
299
+ "reuseMode": "unchanged",
300
+ "license": "MIT",
301
+ "adaptationNote": "Vendored companion file shipped verbatim from upstream."
302
+ },
303
+ {
304
+ "skill": "triage",
305
+ "file": "OUT-OF-SCOPE.md",
306
+ "isSkill": false,
307
+ "repository": "mattpocock/skills",
308
+ "sourceRef": "2ab958093e83e0ec752e6c1c5932da465bf23e0c",
309
+ "upstreamPath": "skills/engineering/triage/OUT-OF-SCOPE.md",
310
+ "sourceSha256": "2526f998fd7ca5e956d3f6f234bcc2431a5971ee769f1148ddc60b92f04d5914",
311
+ "localFrozenPath": "vendor/upstreams/mattpocock/skills/engineering/triage/OUT-OF-SCOPE.md",
312
+ "localFrozenSha256": "2526f998fd7ca5e956d3f6f234bcc2431a5971ee769f1148ddc60b92f04d5914",
313
+ "localTarget": "assets/skills/triage/OUT-OF-SCOPE.md",
314
+ "localSha256": "2526f998fd7ca5e956d3f6f234bcc2431a5971ee769f1148ddc60b92f04d5914",
315
+ "reuseMode": "unchanged",
316
+ "license": "MIT",
317
+ "adaptationNote": "Vendored companion file shipped verbatim from upstream."
318
+ },
319
+ {
320
+ "skill": "triage",
321
+ "file": "SKILL.md",
322
+ "isSkill": true,
323
+ "repository": "mattpocock/skills",
324
+ "sourceRef": "2ab958093e83e0ec752e6c1c5932da465bf23e0c",
325
+ "upstreamPath": "skills/engineering/triage/SKILL.md",
326
+ "sourceSha256": "d45827c299c021f77b0f146fefa3ee679b13f99e9a2ffdf48e8de2347adeefe1",
327
+ "localFrozenPath": "vendor/upstreams/mattpocock/skills/engineering/triage/SKILL.md",
328
+ "localFrozenSha256": "d45827c299c021f77b0f146fefa3ee679b13f99e9a2ffdf48e8de2347adeefe1",
329
+ "localTarget": "assets/skills/triage/SKILL.md",
330
+ "localSha256": "7c4b7d19de85cea4e146987d487d995712ae607c862016dcb047a0eda6841902",
331
+ "reuseMode": "adapted",
332
+ "license": "MIT",
333
+ "adaptationNote": "## Ship integration\n\nThis skill is part of the engineering profile shipped by\n`opencode-ship@1.0`. The strong planner child session is\nconfigured with `openai/gpt-5.6-sol` and the durable workflow\nstate lives under `<git-common-dir>/opencode-ship/`. All\nGitHub mutations go through Ship's typed tools; never use\n`gh api` or raw shell."
334
+ },
335
+ {
336
+ "skill": "to-spec",
337
+ "file": "SKILL.md",
338
+ "isSkill": true,
339
+ "repository": "mattpocock/skills",
340
+ "sourceRef": "2ab958093e83e0ec752e6c1c5932da465bf23e0c",
341
+ "upstreamPath": "skills/engineering/to-spec/SKILL.md",
342
+ "sourceSha256": "267638edd513b5918de626ad5605d261952abb7428cb308869c663ca924e93e7",
343
+ "localFrozenPath": "vendor/upstreams/mattpocock/skills/engineering/to-spec/SKILL.md",
344
+ "localFrozenSha256": "267638edd513b5918de626ad5605d261952abb7428cb308869c663ca924e93e7",
345
+ "localTarget": "assets/skills/to-spec/SKILL.md",
346
+ "localSha256": "ec3825dc5a5e96a047a47eb3dd913b343936a5e8d539ce85c9d8eadaab304a47",
347
+ "reuseMode": "adapted",
348
+ "license": "MIT",
349
+ "adaptationNote": "## Ship integration\n\nThis skill is part of the engineering profile shipped by\n`opencode-ship@1.0`. The strong planner child session is\nconfigured with `openai/gpt-5.6-sol` and the durable workflow\nstate lives under `<git-common-dir>/opencode-ship/`. All\nGitHub mutations go through Ship's typed tools; never use\n`gh api` or raw shell."
350
+ },
351
+ {
352
+ "skill": "to-tickets",
353
+ "file": "SKILL.md",
354
+ "isSkill": true,
355
+ "repository": "mattpocock/skills",
356
+ "sourceRef": "2ab958093e83e0ec752e6c1c5932da465bf23e0c",
357
+ "upstreamPath": "skills/engineering/to-tickets/SKILL.md",
358
+ "sourceSha256": "5ecdf1d4df8a360ed39df21a2347f97ba177afd449a577da4f6b6ea8e1ebb808",
359
+ "localFrozenPath": "vendor/upstreams/mattpocock/skills/engineering/to-tickets/SKILL.md",
360
+ "localFrozenSha256": "5ecdf1d4df8a360ed39df21a2347f97ba177afd449a577da4f6b6ea8e1ebb808",
361
+ "localTarget": "assets/skills/to-tickets/SKILL.md",
362
+ "localSha256": "25dc8158fd8c93630f9b0df7df8469e37785641177c73f15fd667fe120bb3987",
363
+ "reuseMode": "adapted",
364
+ "license": "MIT",
365
+ "adaptationNote": "## Ship integration\n\nThis skill is part of the engineering profile shipped by\n`opencode-ship@1.0`. The strong planner child session is\nconfigured with `openai/gpt-5.6-sol` and the durable workflow\nstate lives under `<git-common-dir>/opencode-ship/`. All\nGitHub mutations go through Ship's typed tools; never use\n`gh api` or raw shell."
366
+ },
367
+ {
368
+ "skill": "wayfinder",
369
+ "file": "SKILL.md",
370
+ "isSkill": true,
371
+ "repository": "mattpocock/skills",
372
+ "sourceRef": "2ab958093e83e0ec752e6c1c5932da465bf23e0c",
373
+ "upstreamPath": "skills/engineering/wayfinder/SKILL.md",
374
+ "sourceSha256": "257e40665b28ae959ffdcb97d7a72b074360f4a3d201bd84786505308546e434",
375
+ "localFrozenPath": "vendor/upstreams/mattpocock/skills/engineering/wayfinder/SKILL.md",
376
+ "localFrozenSha256": "257e40665b28ae959ffdcb97d7a72b074360f4a3d201bd84786505308546e434",
377
+ "localTarget": "assets/skills/wayfinder/SKILL.md",
378
+ "localSha256": "1dc2fa0a585464104ca983a00fba5c6a78ee716bdb2f8d7ac0893f63ca5215bc",
379
+ "reuseMode": "adapted",
380
+ "license": "MIT",
381
+ "adaptationNote": "## Ship integration\n\nThis skill is part of the engineering profile shipped by\n`opencode-ship@1.0`. The strong planner child session is\nconfigured with `openai/gpt-5.6-sol` and the durable workflow\nstate lives under `<git-common-dir>/opencode-ship/`. All\nGitHub mutations go through Ship's typed tools; never use\n`gh api` or raw shell."
382
+ },
383
+ {
384
+ "skill": "handoff",
385
+ "file": "SKILL.md",
386
+ "isSkill": true,
387
+ "repository": "mattpocock/skills",
388
+ "sourceRef": "2ab958093e83e0ec752e6c1c5932da465bf23e0c",
389
+ "upstreamPath": "skills/productivity/handoff/SKILL.md",
390
+ "sourceSha256": "57c9f1f392d7352cdc85b1e39ca49eddc70ce1dc278bd9653fb4f23dfc2560fc",
391
+ "localFrozenPath": "vendor/upstreams/mattpocock/skills/productivity/handoff/SKILL.md",
392
+ "localFrozenSha256": "57c9f1f392d7352cdc85b1e39ca49eddc70ce1dc278bd9653fb4f23dfc2560fc",
393
+ "localTarget": "assets/skills/handoff/SKILL.md",
394
+ "localSha256": "59cc7899221b8991fd08f4eb1344b3ec6002acaf58cedba0fb50b51874cf6744",
395
+ "reuseMode": "adapted",
396
+ "license": "MIT",
397
+ "adaptationNote": "## Ship integration\n\nThis skill is part of the engineering profile shipped by\n`opencode-ship@1.0`. The strong planner child session is\nconfigured with `openai/gpt-5.6-sol` and the durable workflow\nstate lives under `<git-common-dir>/opencode-ship/`. All\nGitHub mutations go through Ship's typed tools; never use\n`gh api` or raw shell."
398
+ },
399
+ {
400
+ "skill": "research",
401
+ "file": "SKILL.md",
402
+ "isSkill": true,
403
+ "repository": "mattpocock/skills",
404
+ "sourceRef": "2ab958093e83e0ec752e6c1c5932da465bf23e0c",
405
+ "upstreamPath": "skills/engineering/research/SKILL.md",
406
+ "sourceSha256": "af378829f015775a3bcd65ff466826722e99359017ae6bae227ca4c9bd14049c",
407
+ "localFrozenPath": "vendor/upstreams/mattpocock/skills/engineering/research/SKILL.md",
408
+ "localFrozenSha256": "af378829f015775a3bcd65ff466826722e99359017ae6bae227ca4c9bd14049c",
409
+ "localTarget": "assets/skills/research/SKILL.md",
410
+ "localSha256": "8b014bbfbfc142f1ec330052c53bb199f93f023ab217ddc10cee07723028b5a7",
411
+ "reuseMode": "adapted",
412
+ "license": "MIT",
413
+ "adaptationNote": "## Ship integration\n\nThis skill is part of the engineering profile shipped by\n`opencode-ship@1.0`. The strong planner child session is\nconfigured with `openai/gpt-5.6-sol` and the durable workflow\nstate lives under `<git-common-dir>/opencode-ship/`. All\nGitHub mutations go through Ship's typed tools; never use\n`gh api` or raw shell."
414
+ },
415
+ {
416
+ "skill": "prototype",
417
+ "file": "LOGIC.md",
418
+ "isSkill": false,
419
+ "repository": "mattpocock/skills",
420
+ "sourceRef": "2ab958093e83e0ec752e6c1c5932da465bf23e0c",
421
+ "upstreamPath": "skills/engineering/prototype/LOGIC.md",
422
+ "sourceSha256": "cf372862bccd3db7f18ea57abd76d6c32e6adf65b9e7f46c73d433e107567a5c",
423
+ "localFrozenPath": "vendor/upstreams/mattpocock/skills/engineering/prototype/LOGIC.md",
424
+ "localFrozenSha256": "cf372862bccd3db7f18ea57abd76d6c32e6adf65b9e7f46c73d433e107567a5c",
425
+ "localTarget": "assets/skills/prototype/LOGIC.md",
426
+ "localSha256": "cf372862bccd3db7f18ea57abd76d6c32e6adf65b9e7f46c73d433e107567a5c",
427
+ "reuseMode": "unchanged",
428
+ "license": "MIT",
429
+ "adaptationNote": "Vendored companion file shipped verbatim from upstream."
430
+ },
431
+ {
432
+ "skill": "prototype",
433
+ "file": "SKILL.md",
434
+ "isSkill": true,
435
+ "repository": "mattpocock/skills",
436
+ "sourceRef": "2ab958093e83e0ec752e6c1c5932da465bf23e0c",
437
+ "upstreamPath": "skills/engineering/prototype/SKILL.md",
438
+ "sourceSha256": "03074862d4b6e4eaf472aa75146e1d193dd9e3bba0e4303a9b2425562d1d44cc",
439
+ "localFrozenPath": "vendor/upstreams/mattpocock/skills/engineering/prototype/SKILL.md",
440
+ "localFrozenSha256": "03074862d4b6e4eaf472aa75146e1d193dd9e3bba0e4303a9b2425562d1d44cc",
441
+ "localTarget": "assets/skills/prototype/SKILL.md",
442
+ "localSha256": "db8ed8d467f346e91b9822a28e9d5451dedde887352d97e52ef37272925593a0",
443
+ "reuseMode": "adapted",
444
+ "license": "MIT",
445
+ "adaptationNote": "## Ship integration\n\nThis skill is part of the engineering profile shipped by\n`opencode-ship@1.0`. The strong planner child session is\nconfigured with `openai/gpt-5.6-sol` and the durable workflow\nstate lives under `<git-common-dir>/opencode-ship/`. All\nGitHub mutations go through Ship's typed tools; never use\n`gh api` or raw shell."
446
+ },
447
+ {
448
+ "skill": "prototype",
449
+ "file": "UI.md",
450
+ "isSkill": false,
451
+ "repository": "mattpocock/skills",
452
+ "sourceRef": "2ab958093e83e0ec752e6c1c5932da465bf23e0c",
453
+ "upstreamPath": "skills/engineering/prototype/UI.md",
454
+ "sourceSha256": "e2ca04434be54acdee2f5df582ef8038fadf582bbcc99be0d2e27737ff8ed096",
455
+ "localFrozenPath": "vendor/upstreams/mattpocock/skills/engineering/prototype/UI.md",
456
+ "localFrozenSha256": "e2ca04434be54acdee2f5df582ef8038fadf582bbcc99be0d2e27737ff8ed096",
457
+ "localTarget": "assets/skills/prototype/UI.md",
458
+ "localSha256": "e2ca04434be54acdee2f5df582ef8038fadf582bbcc99be0d2e27737ff8ed096",
459
+ "reuseMode": "unchanged",
460
+ "license": "MIT",
461
+ "adaptationNote": "Vendored companion file shipped verbatim from upstream."
462
+ },
463
+ {
464
+ "skill": "codebase-design",
465
+ "file": "DEEPENING.md",
466
+ "isSkill": false,
467
+ "repository": "mattpocock/skills",
468
+ "sourceRef": "2ab958093e83e0ec752e6c1c5932da465bf23e0c",
469
+ "upstreamPath": "skills/engineering/codebase-design/DEEPENING.md",
470
+ "sourceSha256": "125e6b77413ad2bc7cf7a772bc74336d580a50f9e797db2178ed133d62333d06",
471
+ "localFrozenPath": "vendor/upstreams/mattpocock/skills/engineering/codebase-design/DEEPENING.md",
472
+ "localFrozenSha256": "125e6b77413ad2bc7cf7a772bc74336d580a50f9e797db2178ed133d62333d06",
473
+ "localTarget": "assets/skills/codebase-design/DEEPENING.md",
474
+ "localSha256": "125e6b77413ad2bc7cf7a772bc74336d580a50f9e797db2178ed133d62333d06",
475
+ "reuseMode": "unchanged",
476
+ "license": "MIT",
477
+ "adaptationNote": "Vendored companion file shipped verbatim from upstream."
478
+ },
479
+ {
480
+ "skill": "codebase-design",
481
+ "file": "DESIGN-IT-TWICE.md",
482
+ "isSkill": false,
483
+ "repository": "mattpocock/skills",
484
+ "sourceRef": "2ab958093e83e0ec752e6c1c5932da465bf23e0c",
485
+ "upstreamPath": "skills/engineering/codebase-design/DESIGN-IT-TWICE.md",
486
+ "sourceSha256": "21c3264953bd30ee87b181a3ccaf0e70649f461e5ffd7dc654acee4ba1788b31",
487
+ "localFrozenPath": "vendor/upstreams/mattpocock/skills/engineering/codebase-design/DESIGN-IT-TWICE.md",
488
+ "localFrozenSha256": "21c3264953bd30ee87b181a3ccaf0e70649f461e5ffd7dc654acee4ba1788b31",
489
+ "localTarget": "assets/skills/codebase-design/DESIGN-IT-TWICE.md",
490
+ "localSha256": "21c3264953bd30ee87b181a3ccaf0e70649f461e5ffd7dc654acee4ba1788b31",
491
+ "reuseMode": "unchanged",
492
+ "license": "MIT",
493
+ "adaptationNote": "Vendored companion file shipped verbatim from upstream."
494
+ },
495
+ {
496
+ "skill": "codebase-design",
497
+ "file": "SKILL.md",
498
+ "isSkill": true,
499
+ "repository": "mattpocock/skills",
500
+ "sourceRef": "2ab958093e83e0ec752e6c1c5932da465bf23e0c",
501
+ "upstreamPath": "skills/engineering/codebase-design/SKILL.md",
502
+ "sourceSha256": "a8d50abac5a4018f60e1d911d4b6f4e36454ca14d6c390c0695a578c7de65dad",
503
+ "localFrozenPath": "vendor/upstreams/mattpocock/skills/engineering/codebase-design/SKILL.md",
504
+ "localFrozenSha256": "a8d50abac5a4018f60e1d911d4b6f4e36454ca14d6c390c0695a578c7de65dad",
505
+ "localTarget": "assets/skills/codebase-design/SKILL.md",
506
+ "localSha256": "8a1b3aa52c0b18333e1eef2da8fc5b055e4b45b47454d41d46f7f09dd96443bf",
507
+ "reuseMode": "adapted",
508
+ "license": "MIT",
509
+ "adaptationNote": "## Ship integration\n\nThis skill is part of the engineering profile shipped by\n`opencode-ship@1.0`. The strong planner child session is\nconfigured with `openai/gpt-5.6-sol` and the durable workflow\nstate lives under `<git-common-dir>/opencode-ship/`. All\nGitHub mutations go through Ship's typed tools; never use\n`gh api` or raw shell."
510
+ },
511
+ {
512
+ "skill": "code-review",
513
+ "file": "SKILL.md",
514
+ "isSkill": true,
515
+ "repository": "mattpocock/skills",
516
+ "sourceRef": "2ab958093e83e0ec752e6c1c5932da465bf23e0c",
517
+ "upstreamPath": "skills/engineering/code-review/SKILL.md",
518
+ "sourceSha256": "6a65cc61114f96db07ec41e3920e67c9c5bf70dd6e0901eb9460ebcb2bdc209f",
519
+ "localFrozenPath": "vendor/upstreams/mattpocock/skills/engineering/code-review/SKILL.md",
520
+ "localFrozenSha256": "6a65cc61114f96db07ec41e3920e67c9c5bf70dd6e0901eb9460ebcb2bdc209f",
521
+ "localTarget": "assets/skills/code-review/SKILL.md",
522
+ "localSha256": "c0da1c2dbf8cfceaa021c73ed44add013bf58d3829f9721ef5d261ce034be4ba",
523
+ "reuseMode": "adapted",
524
+ "license": "MIT",
525
+ "adaptationNote": "## Ship integration\n\nThis skill is part of the engineering profile shipped by\n`opencode-ship@1.0`. The strong planner child session is\nconfigured with `openai/gpt-5.6-sol` and the durable workflow\nstate lives under `<git-common-dir>/opencode-ship/`. All\nGitHub mutations go through Ship's typed tools; never use\n`gh api` or raw shell."
526
+ },
527
+ {
528
+ "skill": "brainstorming",
529
+ "file": "SKILL.md",
530
+ "isSkill": true,
531
+ "repository": "obra/superpowers",
532
+ "sourceRef": "44c9b2d6e889982ac18c27d05a19fefe335194e1",
533
+ "upstreamPath": "skills/brainstorming/SKILL.md",
534
+ "sourceSha256": "4a54a4858b99807f3155ed1614b2f116e35ea5c1b788e793f565dd837fd3891f",
535
+ "localFrozenPath": "vendor/upstreams/obra/skills/brainstorming/SKILL.md",
536
+ "localFrozenSha256": "4a54a4858b99807f3155ed1614b2f116e35ea5c1b788e793f565dd837fd3891f",
537
+ "localTarget": "assets/skills/brainstorming/SKILL.md",
538
+ "localSha256": "5cbb6cd5794b43713fd4343de16312d6a08ba3182a579767547b89fa0f00cfe9",
539
+ "reuseMode": "adapted",
540
+ "license": "MIT",
541
+ "adaptationNote": "## Ship integration\n\nThis skill is part of the engineering profile shipped by\n`opencode-ship@1.0`. Execution is driven by the deterministic\nShip controller; the cheap builder (`minimax/MiniMax-M3`) cannot\ncommit, push, mutate GitHub, mark Ready, or merge. The\nverification-before-completion rule is enforced by\n`delivery_verify`, not by the model self-asserting completion."
542
+ },
543
+ {
544
+ "skill": "brainstorming",
545
+ "file": "spec-document-reviewer-prompt.md",
546
+ "isSkill": false,
547
+ "repository": "obra/superpowers",
548
+ "sourceRef": "44c9b2d6e889982ac18c27d05a19fefe335194e1",
549
+ "upstreamPath": "skills/brainstorming/spec-document-reviewer-prompt.md",
550
+ "sourceSha256": "95a0a195de9d984be2fffa95bab16fc8c563bc296a9cfc5e9c29cb3ece0d7457",
551
+ "localFrozenPath": "vendor/upstreams/obra/skills/brainstorming/spec-document-reviewer-prompt.md",
552
+ "localFrozenSha256": "95a0a195de9d984be2fffa95bab16fc8c563bc296a9cfc5e9c29cb3ece0d7457",
553
+ "localTarget": "assets/skills/brainstorming/spec-document-reviewer-prompt.md",
554
+ "localSha256": "95a0a195de9d984be2fffa95bab16fc8c563bc296a9cfc5e9c29cb3ece0d7457",
555
+ "reuseMode": "unchanged",
556
+ "license": "MIT",
557
+ "adaptationNote": "Vendored companion file shipped verbatim from upstream."
558
+ },
559
+ {
560
+ "skill": "brainstorming",
561
+ "file": "visual-companion.md",
562
+ "isSkill": false,
563
+ "repository": "obra/superpowers",
564
+ "sourceRef": "44c9b2d6e889982ac18c27d05a19fefe335194e1",
565
+ "upstreamPath": "skills/brainstorming/visual-companion.md",
566
+ "sourceSha256": "60cbad29b9dd7eaf08da020e301c498a72230b2e13c1813fa967a135ffcc1d71",
567
+ "localFrozenPath": "vendor/upstreams/obra/skills/brainstorming/visual-companion.md",
568
+ "localFrozenSha256": "60cbad29b9dd7eaf08da020e301c498a72230b2e13c1813fa967a135ffcc1d71",
569
+ "localTarget": "assets/skills/brainstorming/visual-companion.md",
570
+ "localSha256": "60cbad29b9dd7eaf08da020e301c498a72230b2e13c1813fa967a135ffcc1d71",
571
+ "reuseMode": "unchanged",
572
+ "license": "MIT",
573
+ "adaptationNote": "Vendored companion file shipped verbatim from upstream."
574
+ },
575
+ {
576
+ "skill": "writing-plans",
577
+ "file": "SKILL.md",
578
+ "isSkill": true,
579
+ "repository": "obra/superpowers",
580
+ "sourceRef": "44c9b2d6e889982ac18c27d05a19fefe335194e1",
581
+ "upstreamPath": "skills/writing-plans/SKILL.md",
582
+ "sourceSha256": "72190c88b2b5a67a96b91d66aa72b9161913e10e8769da3f28a226f4cc7b99d0",
583
+ "localFrozenPath": "vendor/upstreams/obra/skills/writing-plans/SKILL.md",
584
+ "localFrozenSha256": "72190c88b2b5a67a96b91d66aa72b9161913e10e8769da3f28a226f4cc7b99d0",
585
+ "localTarget": "assets/skills/writing-plans/SKILL.md",
586
+ "localSha256": "14c2184bdc6ee538614011ee247f2d51cae6e8770c2d2e961d44620aa0d739c6",
587
+ "reuseMode": "adapted",
588
+ "license": "MIT",
589
+ "adaptationNote": "## Ship integration\n\nThis skill is part of the engineering profile shipped by\n`opencode-ship@1.0`. Execution is driven by the deterministic\nShip controller; the cheap builder (`minimax/MiniMax-M3`) cannot\ncommit, push, mutate GitHub, mark Ready, or merge. The\nverification-before-completion rule is enforced by\n`delivery_verify`, not by the model self-asserting completion."
590
+ },
591
+ {
592
+ "skill": "writing-plans",
593
+ "file": "plan-document-reviewer-prompt.md",
594
+ "isSkill": false,
595
+ "repository": "obra/superpowers",
596
+ "sourceRef": "44c9b2d6e889982ac18c27d05a19fefe335194e1",
597
+ "upstreamPath": "skills/writing-plans/plan-document-reviewer-prompt.md",
598
+ "sourceSha256": "aa728b96aad603c8be28875a4305637f6c984aa81ffcadcb13e743202fa2a0c7",
599
+ "localFrozenPath": "vendor/upstreams/obra/skills/writing-plans/plan-document-reviewer-prompt.md",
600
+ "localFrozenSha256": "aa728b96aad603c8be28875a4305637f6c984aa81ffcadcb13e743202fa2a0c7",
601
+ "localTarget": "assets/skills/writing-plans/plan-document-reviewer-prompt.md",
602
+ "localSha256": "aa728b96aad603c8be28875a4305637f6c984aa81ffcadcb13e743202fa2a0c7",
603
+ "reuseMode": "unchanged",
604
+ "license": "MIT",
605
+ "adaptationNote": "Vendored companion file shipped verbatim from upstream."
606
+ },
607
+ {
608
+ "skill": "executing-plans",
609
+ "file": "SKILL.md",
610
+ "isSkill": true,
611
+ "repository": "obra/superpowers",
612
+ "sourceRef": "44c9b2d6e889982ac18c27d05a19fefe335194e1",
613
+ "upstreamPath": "skills/executing-plans/SKILL.md",
614
+ "sourceSha256": "c4c3d8b628c51114cd165fb8246fe02744cd8be180032328391252e653028d9b",
615
+ "localFrozenPath": "vendor/upstreams/obra/skills/executing-plans/SKILL.md",
616
+ "localFrozenSha256": "c4c3d8b628c51114cd165fb8246fe02744cd8be180032328391252e653028d9b",
617
+ "localTarget": "assets/skills/executing-plans/SKILL.md",
618
+ "localSha256": "de7d1e38991d184f4affbe2d97342c39041689ac14d657f2b2542f45de0681e6",
619
+ "reuseMode": "adapted",
620
+ "license": "MIT",
621
+ "adaptationNote": "## Ship integration\n\nThis skill is part of the engineering profile shipped by\n`opencode-ship@1.0`. Execution is driven by the deterministic\nShip controller; the cheap builder (`minimax/MiniMax-M3`) cannot\ncommit, push, mutate GitHub, mark Ready, or merge. The\nverification-before-completion rule is enforced by\n`delivery_verify`, not by the model self-asserting completion."
622
+ },
623
+ {
624
+ "skill": "subagent-driven-development",
625
+ "file": "SKILL.md",
626
+ "isSkill": true,
627
+ "repository": "obra/superpowers",
628
+ "sourceRef": "44c9b2d6e889982ac18c27d05a19fefe335194e1",
629
+ "upstreamPath": "skills/subagent-driven-development/SKILL.md",
630
+ "sourceSha256": "349a08ad8b59b19b86c13a7d2f34a1a38719bf88257004a863eefefa8d9f9e40",
631
+ "localFrozenPath": "vendor/upstreams/obra/skills/subagent-driven-development/SKILL.md",
632
+ "localFrozenSha256": "349a08ad8b59b19b86c13a7d2f34a1a38719bf88257004a863eefefa8d9f9e40",
633
+ "localTarget": "assets/skills/subagent-driven-development/SKILL.md",
634
+ "localSha256": "46d7ace03198558e30671f22e00979235bdd5dcea2e5de5e0ed1cca4bb9ad0a4",
635
+ "reuseMode": "adapted",
636
+ "license": "MIT",
637
+ "adaptationNote": "## Ship integration\n\nThis skill is part of the engineering profile shipped by\n`opencode-ship@1.0`. Execution is driven by the deterministic\nShip controller; the cheap builder (`minimax/MiniMax-M3`) cannot\ncommit, push, mutate GitHub, mark Ready, or merge. The\nverification-before-completion rule is enforced by\n`delivery_verify`, not by the model self-asserting completion."
638
+ },
639
+ {
640
+ "skill": "subagent-driven-development",
641
+ "file": "implementer-prompt.md",
642
+ "isSkill": false,
643
+ "repository": "obra/superpowers",
644
+ "sourceRef": "44c9b2d6e889982ac18c27d05a19fefe335194e1",
645
+ "upstreamPath": "skills/subagent-driven-development/implementer-prompt.md",
646
+ "sourceSha256": "946601616a6f76ab3f165ef98377390968f1ec124ecef87422bc3553404e0332",
647
+ "localFrozenPath": "vendor/upstreams/obra/skills/subagent-driven-development/implementer-prompt.md",
648
+ "localFrozenSha256": "946601616a6f76ab3f165ef98377390968f1ec124ecef87422bc3553404e0332",
649
+ "localTarget": "assets/skills/subagent-driven-development/implementer-prompt.md",
650
+ "localSha256": "946601616a6f76ab3f165ef98377390968f1ec124ecef87422bc3553404e0332",
651
+ "reuseMode": "unchanged",
652
+ "license": "MIT",
653
+ "adaptationNote": "Vendored companion file shipped verbatim from upstream."
654
+ },
655
+ {
656
+ "skill": "subagent-driven-development",
657
+ "file": "re-review-prompt.md",
658
+ "isSkill": false,
659
+ "repository": "obra/superpowers",
660
+ "sourceRef": "44c9b2d6e889982ac18c27d05a19fefe335194e1",
661
+ "upstreamPath": "skills/subagent-driven-development/re-review-prompt.md",
662
+ "sourceSha256": "e1d8e0e65e58ccde6dc920843da9148d23e65aeb0f8932bcc30be1341a703c4c",
663
+ "localFrozenPath": "vendor/upstreams/obra/skills/subagent-driven-development/re-review-prompt.md",
664
+ "localFrozenSha256": "e1d8e0e65e58ccde6dc920843da9148d23e65aeb0f8932bcc30be1341a703c4c",
665
+ "localTarget": "assets/skills/subagent-driven-development/re-review-prompt.md",
666
+ "localSha256": "e1d8e0e65e58ccde6dc920843da9148d23e65aeb0f8932bcc30be1341a703c4c",
667
+ "reuseMode": "unchanged",
668
+ "license": "MIT",
669
+ "adaptationNote": "Vendored companion file shipped verbatim from upstream."
670
+ },
671
+ {
672
+ "skill": "subagent-driven-development",
673
+ "file": "task-reviewer-prompt.md",
674
+ "isSkill": false,
675
+ "repository": "obra/superpowers",
676
+ "sourceRef": "44c9b2d6e889982ac18c27d05a19fefe335194e1",
677
+ "upstreamPath": "skills/subagent-driven-development/task-reviewer-prompt.md",
678
+ "sourceSha256": "e3b4a1bfe7cd55ed0459e5ca9cdddb6ff086c345b99e9097036db6a18545729e",
679
+ "localFrozenPath": "vendor/upstreams/obra/skills/subagent-driven-development/task-reviewer-prompt.md",
680
+ "localFrozenSha256": "e3b4a1bfe7cd55ed0459e5ca9cdddb6ff086c345b99e9097036db6a18545729e",
681
+ "localTarget": "assets/skills/subagent-driven-development/task-reviewer-prompt.md",
682
+ "localSha256": "e3b4a1bfe7cd55ed0459e5ca9cdddb6ff086c345b99e9097036db6a18545729e",
683
+ "reuseMode": "unchanged",
684
+ "license": "MIT",
685
+ "adaptationNote": "Vendored companion file shipped verbatim from upstream."
686
+ },
687
+ {
688
+ "skill": "dispatching-parallel-agents",
689
+ "file": "SKILL.md",
690
+ "isSkill": true,
691
+ "repository": "obra/superpowers",
692
+ "sourceRef": "44c9b2d6e889982ac18c27d05a19fefe335194e1",
693
+ "upstreamPath": "skills/dispatching-parallel-agents/SKILL.md",
694
+ "sourceSha256": "1968923066f3b707eb01d1992cdf4c42284c3855f70253b9cd5000ff45fca13c",
695
+ "localFrozenPath": "vendor/upstreams/obra/skills/dispatching-parallel-agents/SKILL.md",
696
+ "localFrozenSha256": "1968923066f3b707eb01d1992cdf4c42284c3855f70253b9cd5000ff45fca13c",
697
+ "localTarget": "assets/skills/dispatching-parallel-agents/SKILL.md",
698
+ "localSha256": "560e4e37b0bd84777d284a3b39604bc81a4d9274515f9deb688b155d55e1f8fc",
699
+ "reuseMode": "adapted",
700
+ "license": "MIT",
701
+ "adaptationNote": "## Ship integration\n\nThis skill is part of the engineering profile shipped by\n`opencode-ship@1.0`. Execution is driven by the deterministic\nShip controller; the cheap builder (`minimax/MiniMax-M3`) cannot\ncommit, push, mutate GitHub, mark Ready, or merge. The\nverification-before-completion rule is enforced by\n`delivery_verify`, not by the model self-asserting completion."
702
+ },
703
+ {
704
+ "skill": "test-driven-development",
705
+ "file": "SKILL.md",
706
+ "isSkill": true,
707
+ "repository": "obra/superpowers",
708
+ "sourceRef": "44c9b2d6e889982ac18c27d05a19fefe335194e1",
709
+ "upstreamPath": "skills/test-driven-development/SKILL.md",
710
+ "sourceSha256": "bf1b8216e523851a411e91d429a7c1c2a173e79d88957bc78e348218d50edd54",
711
+ "localFrozenPath": "vendor/upstreams/obra/skills/test-driven-development/SKILL.md",
712
+ "localFrozenSha256": "bf1b8216e523851a411e91d429a7c1c2a173e79d88957bc78e348218d50edd54",
713
+ "localTarget": "assets/skills/test-driven-development/SKILL.md",
714
+ "localSha256": "5fb9136eabbc16c74d52383570be0c9f0259f92593b17a975ff04252499dad03",
715
+ "reuseMode": "adapted",
716
+ "license": "MIT",
717
+ "adaptationNote": "## Ship integration\n\nThis skill is part of the engineering profile shipped by\n`opencode-ship@1.0`. Execution is driven by the deterministic\nShip controller; the cheap builder (`minimax/MiniMax-M3`) cannot\ncommit, push, mutate GitHub, mark Ready, or merge. The\nverification-before-completion rule is enforced by\n`delivery_verify`, not by the model self-asserting completion."
718
+ },
719
+ {
720
+ "skill": "test-driven-development",
721
+ "file": "writing-good-tests.md",
722
+ "isSkill": false,
723
+ "repository": "obra/superpowers",
724
+ "sourceRef": "44c9b2d6e889982ac18c27d05a19fefe335194e1",
725
+ "upstreamPath": "skills/test-driven-development/writing-good-tests.md",
726
+ "sourceSha256": "51471c853306ff92ca8bb41dcaea05f31c0e46b03651f8f3c99754b7172f4ae1",
727
+ "localFrozenPath": "vendor/upstreams/obra/skills/test-driven-development/writing-good-tests.md",
728
+ "localFrozenSha256": "51471c853306ff92ca8bb41dcaea05f31c0e46b03651f8f3c99754b7172f4ae1",
729
+ "localTarget": "assets/skills/test-driven-development/writing-good-tests.md",
730
+ "localSha256": "51471c853306ff92ca8bb41dcaea05f31c0e46b03651f8f3c99754b7172f4ae1",
731
+ "reuseMode": "unchanged",
732
+ "license": "MIT",
733
+ "adaptationNote": "Vendored companion file shipped verbatim from upstream."
734
+ },
735
+ {
736
+ "skill": "systematic-debugging",
737
+ "file": "CREATION-LOG.md",
738
+ "isSkill": false,
739
+ "repository": "obra/superpowers",
740
+ "sourceRef": "44c9b2d6e889982ac18c27d05a19fefe335194e1",
741
+ "upstreamPath": "skills/systematic-debugging/CREATION-LOG.md",
742
+ "sourceSha256": "c24733a5b1821bd6bed1fc950261f0b9f4e90097e0bbb96459d8179713730789",
743
+ "localFrozenPath": "vendor/upstreams/obra/skills/systematic-debugging/CREATION-LOG.md",
744
+ "localFrozenSha256": "c24733a5b1821bd6bed1fc950261f0b9f4e90097e0bbb96459d8179713730789",
745
+ "localTarget": "assets/skills/systematic-debugging/CREATION-LOG.md",
746
+ "localSha256": "c24733a5b1821bd6bed1fc950261f0b9f4e90097e0bbb96459d8179713730789",
747
+ "reuseMode": "unchanged",
748
+ "license": "MIT",
749
+ "adaptationNote": "Vendored companion file shipped verbatim from upstream."
750
+ },
751
+ {
752
+ "skill": "systematic-debugging",
753
+ "file": "SKILL.md",
754
+ "isSkill": true,
755
+ "repository": "obra/superpowers",
756
+ "sourceRef": "44c9b2d6e889982ac18c27d05a19fefe335194e1",
757
+ "upstreamPath": "skills/systematic-debugging/SKILL.md",
758
+ "sourceSha256": "808fc5717aa88ad65efff312b11c186294d3e6ee301afb584e2f86599b137787",
759
+ "localFrozenPath": "vendor/upstreams/obra/skills/systematic-debugging/SKILL.md",
760
+ "localFrozenSha256": "808fc5717aa88ad65efff312b11c186294d3e6ee301afb584e2f86599b137787",
761
+ "localTarget": "assets/skills/systematic-debugging/SKILL.md",
762
+ "localSha256": "7180b97e2875b42590bb2f118e78676e08e9188c8d5f11f16a0669918c503f38",
763
+ "reuseMode": "adapted",
764
+ "license": "MIT",
765
+ "adaptationNote": "## Ship integration\n\nThis skill is part of the engineering profile shipped by\n`opencode-ship@1.0`. Execution is driven by the deterministic\nShip controller; the cheap builder (`minimax/MiniMax-M3`) cannot\ncommit, push, mutate GitHub, mark Ready, or merge. The\nverification-before-completion rule is enforced by\n`delivery_verify`, not by the model self-asserting completion."
766
+ },
767
+ {
768
+ "skill": "systematic-debugging",
769
+ "file": "condition-based-waiting-example.ts",
770
+ "isSkill": false,
771
+ "repository": "obra/superpowers",
772
+ "sourceRef": "44c9b2d6e889982ac18c27d05a19fefe335194e1",
773
+ "upstreamPath": "skills/systematic-debugging/condition-based-waiting-example.ts",
774
+ "sourceSha256": "40ae5ebe497fdf310200e43fe986552546d0a22837c0d39e855db1cfd33eb88e",
775
+ "localFrozenPath": "vendor/upstreams/obra/skills/systematic-debugging/condition-based-waiting-example.ts",
776
+ "localFrozenSha256": "40ae5ebe497fdf310200e43fe986552546d0a22837c0d39e855db1cfd33eb88e",
777
+ "localTarget": "assets/skills/systematic-debugging/condition-based-waiting-example.ts",
778
+ "localSha256": "40ae5ebe497fdf310200e43fe986552546d0a22837c0d39e855db1cfd33eb88e",
779
+ "reuseMode": "unchanged",
780
+ "license": "MIT",
781
+ "adaptationNote": "Vendored companion file shipped verbatim from upstream."
782
+ },
783
+ {
784
+ "skill": "systematic-debugging",
785
+ "file": "condition-based-waiting.md",
786
+ "isSkill": false,
787
+ "repository": "obra/superpowers",
788
+ "sourceRef": "44c9b2d6e889982ac18c27d05a19fefe335194e1",
789
+ "upstreamPath": "skills/systematic-debugging/condition-based-waiting.md",
790
+ "sourceSha256": "e89fec8400d6cd50f43407cec9fab50976ba4d55d0ec2eb51c0bd68036b54c26",
791
+ "localFrozenPath": "vendor/upstreams/obra/skills/systematic-debugging/condition-based-waiting.md",
792
+ "localFrozenSha256": "e89fec8400d6cd50f43407cec9fab50976ba4d55d0ec2eb51c0bd68036b54c26",
793
+ "localTarget": "assets/skills/systematic-debugging/condition-based-waiting.md",
794
+ "localSha256": "e89fec8400d6cd50f43407cec9fab50976ba4d55d0ec2eb51c0bd68036b54c26",
795
+ "reuseMode": "unchanged",
796
+ "license": "MIT",
797
+ "adaptationNote": "Vendored companion file shipped verbatim from upstream."
798
+ },
799
+ {
800
+ "skill": "systematic-debugging",
801
+ "file": "defense-in-depth.md",
802
+ "isSkill": false,
803
+ "repository": "obra/superpowers",
804
+ "sourceRef": "44c9b2d6e889982ac18c27d05a19fefe335194e1",
805
+ "upstreamPath": "skills/systematic-debugging/defense-in-depth.md",
806
+ "sourceSha256": "1e175fb86fc357e58c6aebf5441e481e1b7868b4380c0456b63a17eefbd18ba7",
807
+ "localFrozenPath": "vendor/upstreams/obra/skills/systematic-debugging/defense-in-depth.md",
808
+ "localFrozenSha256": "1e175fb86fc357e58c6aebf5441e481e1b7868b4380c0456b63a17eefbd18ba7",
809
+ "localTarget": "assets/skills/systematic-debugging/defense-in-depth.md",
810
+ "localSha256": "1e175fb86fc357e58c6aebf5441e481e1b7868b4380c0456b63a17eefbd18ba7",
811
+ "reuseMode": "unchanged",
812
+ "license": "MIT",
813
+ "adaptationNote": "Vendored companion file shipped verbatim from upstream."
814
+ },
815
+ {
816
+ "skill": "systematic-debugging",
817
+ "file": "find-polluter.sh",
818
+ "isSkill": false,
819
+ "repository": "obra/superpowers",
820
+ "sourceRef": "44c9b2d6e889982ac18c27d05a19fefe335194e1",
821
+ "upstreamPath": "skills/systematic-debugging/find-polluter.sh",
822
+ "sourceSha256": "dd7b8f13c4cc2a24b33ff87b18da9248f3e1c80a085c3316224f69ff0fa5c43c",
823
+ "localFrozenPath": "vendor/upstreams/obra/skills/systematic-debugging/find-polluter.sh",
824
+ "localFrozenSha256": "dd7b8f13c4cc2a24b33ff87b18da9248f3e1c80a085c3316224f69ff0fa5c43c",
825
+ "localTarget": "assets/skills/systematic-debugging/find-polluter.sh",
826
+ "localSha256": "dd7b8f13c4cc2a24b33ff87b18da9248f3e1c80a085c3316224f69ff0fa5c43c",
827
+ "reuseMode": "unchanged",
828
+ "license": "MIT",
829
+ "adaptationNote": "Vendored companion file shipped verbatim from upstream."
830
+ },
831
+ {
832
+ "skill": "systematic-debugging",
833
+ "file": "root-cause-tracing.md",
834
+ "isSkill": false,
835
+ "repository": "obra/superpowers",
836
+ "sourceRef": "44c9b2d6e889982ac18c27d05a19fefe335194e1",
837
+ "upstreamPath": "skills/systematic-debugging/root-cause-tracing.md",
838
+ "sourceSha256": "6b0622269e098ca1399e123e553fd385f0b6412d88ef0e9c4f5a8ea9cf1cec7b",
839
+ "localFrozenPath": "vendor/upstreams/obra/skills/systematic-debugging/root-cause-tracing.md",
840
+ "localFrozenSha256": "6b0622269e098ca1399e123e553fd385f0b6412d88ef0e9c4f5a8ea9cf1cec7b",
841
+ "localTarget": "assets/skills/systematic-debugging/root-cause-tracing.md",
842
+ "localSha256": "6b0622269e098ca1399e123e553fd385f0b6412d88ef0e9c4f5a8ea9cf1cec7b",
843
+ "reuseMode": "unchanged",
844
+ "license": "MIT",
845
+ "adaptationNote": "Vendored companion file shipped verbatim from upstream."
846
+ },
847
+ {
848
+ "skill": "systematic-debugging",
849
+ "file": "test-academic.md",
850
+ "isSkill": false,
851
+ "repository": "obra/superpowers",
852
+ "sourceRef": "44c9b2d6e889982ac18c27d05a19fefe335194e1",
853
+ "upstreamPath": "skills/systematic-debugging/test-academic.md",
854
+ "sourceSha256": "fe2ba480d78ac0d686dc025f41c2a32a43d642bf533f91b0c6053a04d35d6486",
855
+ "localFrozenPath": "vendor/upstreams/obra/skills/systematic-debugging/test-academic.md",
856
+ "localFrozenSha256": "fe2ba480d78ac0d686dc025f41c2a32a43d642bf533f91b0c6053a04d35d6486",
857
+ "localTarget": "assets/skills/systematic-debugging/test-academic.md",
858
+ "localSha256": "fe2ba480d78ac0d686dc025f41c2a32a43d642bf533f91b0c6053a04d35d6486",
859
+ "reuseMode": "unchanged",
860
+ "license": "MIT",
861
+ "adaptationNote": "Vendored companion file shipped verbatim from upstream."
862
+ },
863
+ {
864
+ "skill": "systematic-debugging",
865
+ "file": "test-pressure-1.md",
866
+ "isSkill": false,
867
+ "repository": "obra/superpowers",
868
+ "sourceRef": "44c9b2d6e889982ac18c27d05a19fefe335194e1",
869
+ "upstreamPath": "skills/systematic-debugging/test-pressure-1.md",
870
+ "sourceSha256": "0b6a915db0054577819834c79be9eb614e97bddba10d73768e1fbe91cfed048a",
871
+ "localFrozenPath": "vendor/upstreams/obra/skills/systematic-debugging/test-pressure-1.md",
872
+ "localFrozenSha256": "0b6a915db0054577819834c79be9eb614e97bddba10d73768e1fbe91cfed048a",
873
+ "localTarget": "assets/skills/systematic-debugging/test-pressure-1.md",
874
+ "localSha256": "0b6a915db0054577819834c79be9eb614e97bddba10d73768e1fbe91cfed048a",
875
+ "reuseMode": "unchanged",
876
+ "license": "MIT",
877
+ "adaptationNote": "Vendored companion file shipped verbatim from upstream."
878
+ },
879
+ {
880
+ "skill": "systematic-debugging",
881
+ "file": "test-pressure-2.md",
882
+ "isSkill": false,
883
+ "repository": "obra/superpowers",
884
+ "sourceRef": "44c9b2d6e889982ac18c27d05a19fefe335194e1",
885
+ "upstreamPath": "skills/systematic-debugging/test-pressure-2.md",
886
+ "sourceSha256": "b2030aeffba07050e8ad573ddf87486457c4a016a786bb326235bebd856f2016",
887
+ "localFrozenPath": "vendor/upstreams/obra/skills/systematic-debugging/test-pressure-2.md",
888
+ "localFrozenSha256": "b2030aeffba07050e8ad573ddf87486457c4a016a786bb326235bebd856f2016",
889
+ "localTarget": "assets/skills/systematic-debugging/test-pressure-2.md",
890
+ "localSha256": "b2030aeffba07050e8ad573ddf87486457c4a016a786bb326235bebd856f2016",
891
+ "reuseMode": "unchanged",
892
+ "license": "MIT",
893
+ "adaptationNote": "Vendored companion file shipped verbatim from upstream."
894
+ },
895
+ {
896
+ "skill": "systematic-debugging",
897
+ "file": "test-pressure-3.md",
898
+ "isSkill": false,
899
+ "repository": "obra/superpowers",
900
+ "sourceRef": "44c9b2d6e889982ac18c27d05a19fefe335194e1",
901
+ "upstreamPath": "skills/systematic-debugging/test-pressure-3.md",
902
+ "sourceSha256": "96b50a52e2c7989c9cf20fb752c47c1e9a3a70dc362f8f7989f8f5b64dac7708",
903
+ "localFrozenPath": "vendor/upstreams/obra/skills/systematic-debugging/test-pressure-3.md",
904
+ "localFrozenSha256": "96b50a52e2c7989c9cf20fb752c47c1e9a3a70dc362f8f7989f8f5b64dac7708",
905
+ "localTarget": "assets/skills/systematic-debugging/test-pressure-3.md",
906
+ "localSha256": "96b50a52e2c7989c9cf20fb752c47c1e9a3a70dc362f8f7989f8f5b64dac7708",
907
+ "reuseMode": "unchanged",
908
+ "license": "MIT",
909
+ "adaptationNote": "Vendored companion file shipped verbatim from upstream."
910
+ },
911
+ {
912
+ "skill": "verification-before-completion",
913
+ "file": "SKILL.md",
914
+ "isSkill": true,
915
+ "repository": "obra/superpowers",
916
+ "sourceRef": "44c9b2d6e889982ac18c27d05a19fefe335194e1",
917
+ "upstreamPath": "skills/verification-before-completion/SKILL.md",
918
+ "sourceSha256": "2befe7fc55bcadaa3d97dd9e8efeb633d2561c0ebe74c5a8b17c4d9e7e4520b3",
919
+ "localFrozenPath": "vendor/upstreams/obra/skills/verification-before-completion/SKILL.md",
920
+ "localFrozenSha256": "2befe7fc55bcadaa3d97dd9e8efeb633d2561c0ebe74c5a8b17c4d9e7e4520b3",
921
+ "localTarget": "assets/skills/verification-before-completion/SKILL.md",
922
+ "localSha256": "f4c7528eb5be07b6e5df25ec00795ac2e377def7445463034bcdda6b1921b6d2",
923
+ "reuseMode": "adapted",
924
+ "license": "MIT",
925
+ "adaptationNote": "## Ship integration\n\nThis skill is part of the engineering profile shipped by\n`opencode-ship@1.0`. Execution is driven by the deterministic\nShip controller; the cheap builder (`minimax/MiniMax-M3`) cannot\ncommit, push, mutate GitHub, mark Ready, or merge. The\nverification-before-completion rule is enforced by\n`delivery_verify`, not by the model self-asserting completion."
926
+ },
927
+ {
928
+ "skill": "requesting-code-review",
929
+ "file": "SKILL.md",
930
+ "isSkill": true,
931
+ "repository": "obra/superpowers",
932
+ "sourceRef": "44c9b2d6e889982ac18c27d05a19fefe335194e1",
933
+ "upstreamPath": "skills/requesting-code-review/SKILL.md",
934
+ "sourceSha256": "d71cc01ba56d2325cf8af5f7c11837819b63ecd57de0bfdb812f7f3ff7751df8",
935
+ "localFrozenPath": "vendor/upstreams/obra/skills/requesting-code-review/SKILL.md",
936
+ "localFrozenSha256": "d71cc01ba56d2325cf8af5f7c11837819b63ecd57de0bfdb812f7f3ff7751df8",
937
+ "localTarget": "assets/skills/requesting-code-review/SKILL.md",
938
+ "localSha256": "6094619d2a9a07b4701438467c1ad46a74056239b5b6997c1b9b51d940d40e4d",
939
+ "reuseMode": "adapted",
940
+ "license": "MIT",
941
+ "adaptationNote": "## Ship integration\n\nThis skill is part of the engineering profile shipped by\n`opencode-ship@1.0`. Execution is driven by the deterministic\nShip controller; the cheap builder (`minimax/MiniMax-M3`) cannot\ncommit, push, mutate GitHub, mark Ready, or merge. The\nverification-before-completion rule is enforced by\n`delivery_verify`, not by the model self-asserting completion."
942
+ },
943
+ {
944
+ "skill": "requesting-code-review",
945
+ "file": "code-reviewer.md",
946
+ "isSkill": false,
947
+ "repository": "obra/superpowers",
948
+ "sourceRef": "44c9b2d6e889982ac18c27d05a19fefe335194e1",
949
+ "upstreamPath": "skills/requesting-code-review/code-reviewer.md",
950
+ "sourceSha256": "b2f2ec7596925fe52dac158fdfbca19b3a7d779d619c481e6706a6c0001662d3",
951
+ "localFrozenPath": "vendor/upstreams/obra/skills/requesting-code-review/code-reviewer.md",
952
+ "localFrozenSha256": "b2f2ec7596925fe52dac158fdfbca19b3a7d779d619c481e6706a6c0001662d3",
953
+ "localTarget": "assets/skills/requesting-code-review/code-reviewer.md",
954
+ "localSha256": "b2f2ec7596925fe52dac158fdfbca19b3a7d779d619c481e6706a6c0001662d3",
955
+ "reuseMode": "unchanged",
956
+ "license": "MIT",
957
+ "adaptationNote": "Vendored companion file shipped verbatim from upstream."
958
+ },
959
+ {
960
+ "skill": "receiving-code-review",
961
+ "file": "SKILL.md",
962
+ "isSkill": true,
963
+ "repository": "obra/superpowers",
964
+ "sourceRef": "44c9b2d6e889982ac18c27d05a19fefe335194e1",
965
+ "upstreamPath": "skills/receiving-code-review/SKILL.md",
966
+ "sourceSha256": "091df1629510af1b92fc4abd6f96732ebedb4cb2c0f3457e8f2740b0504a2438",
967
+ "localFrozenPath": "vendor/upstreams/obra/skills/receiving-code-review/SKILL.md",
968
+ "localFrozenSha256": "091df1629510af1b92fc4abd6f96732ebedb4cb2c0f3457e8f2740b0504a2438",
969
+ "localTarget": "assets/skills/receiving-code-review/SKILL.md",
970
+ "localSha256": "47b3afda623ea0d6dbe7cf4110bc499560a04d2b69f6409f6c2e25fc1eb68c0f",
971
+ "reuseMode": "adapted",
972
+ "license": "MIT",
973
+ "adaptationNote": "## Ship integration\n\nThis skill is part of the engineering profile shipped by\n`opencode-ship@1.0`. Execution is driven by the deterministic\nShip controller; the cheap builder (`minimax/MiniMax-M3`) cannot\ncommit, push, mutate GitHub, mark Ready, or merge. The\nverification-before-completion rule is enforced by\n`delivery_verify`, not by the model self-asserting completion."
974
+ }
975
+ ]
976
+ }