@lifeaitools/rdc-skills 0.9.31 → 0.9.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/plugin.json +24 -2
- package/.github/workflows/self-test.yml +34 -34
- package/MANIFEST.md +4 -0
- package/commands/build.md +183 -183
- package/commands/collab.md +180 -180
- package/commands/deploy.md +152 -138
- package/commands/fixit.md +116 -104
- package/commands/handoff.md +173 -173
- package/commands/overnight.md +220 -220
- package/commands/plan.md +158 -158
- package/commands/preplan.md +131 -131
- package/commands/prototype.md +145 -145
- package/commands/report.md +99 -99
- package/commands/review.md +120 -120
- package/commands/status.md +86 -86
- package/commands/workitems.md +132 -127
- package/guides/agent-bootstrap.md +265 -206
- package/guides/agents/backend.md +104 -104
- package/guides/agents/content.md +94 -94
- package/guides/agents/cs2.md +56 -56
- package/guides/agents/data.md +87 -87
- package/guides/agents/design.md +77 -77
- package/guides/agents/frontend.md +92 -92
- package/guides/agents/infrastructure.md +81 -81
- package/guides/agents/setup.md +279 -279
- package/guides/agents/verify.md +119 -119
- package/guides/agents/viz.md +106 -106
- package/hooks/foreground-process-gate.js +109 -0
- package/hooks/hook-logger.js +25 -0
- package/hooks/run-hidden-hook.ps1 +47 -0
- package/hooks/work-item-exit-gate.js +297 -0
- package/package.json +3 -3
- package/rules/work-items-rpc.md +56 -7
- package/scripts/fixtures/guides/bad-guide.md +15 -0
- package/scripts/fixtures/guides-clean/good-guide.md +16 -0
- package/scripts/install-rdc-skills.js +53 -9
- package/scripts/install.ps1 +17 -11
- package/scripts/self-test.mjs +1323 -1113
- package/scripts/test-guide-validator.mjs +194 -0
- package/skills/build/SKILL.md +355 -355
- package/skills/co-develop/SKILL.md +182 -0
- package/skills/collab/SKILL.md +217 -217
- package/skills/deploy/SKILL.md +198 -152
- package/skills/design/SKILL.md +211 -211
- package/skills/fixit/SKILL.md +132 -122
- package/skills/handoff/SKILL.md +200 -200
- package/skills/help/SKILL.md +104 -102
- package/skills/overnight/SKILL.md +224 -224
- package/skills/plan/SKILL.md +252 -251
- package/skills/preplan/SKILL.md +86 -86
- package/skills/prototype/SKILL.md +150 -150
- package/skills/release/SKILL.md +342 -342
- package/skills/report/SKILL.md +100 -100
- package/skills/review/SKILL.md +121 -120
- package/skills/self-test/SKILL.md +126 -126
- package/skills/status/SKILL.md +99 -97
- package/skills/terminal-config/SKILL.md +18 -18
- package/skills/watch/SKILL.md +91 -91
- package/skills/workitems/SKILL.md +151 -146
package/scripts/install.ps1
CHANGED
|
@@ -58,7 +58,7 @@ if (-not (Test-Path $hooksDir)) {
|
|
|
58
58
|
}
|
|
59
59
|
|
|
60
60
|
$srcHooks = Join-Path $repoRoot "hooks"
|
|
61
|
-
$hookFiles = Get-ChildItem -Path $srcHooks -
|
|
61
|
+
$hookFiles = Get-ChildItem -Path $srcHooks -File -ErrorAction SilentlyContinue | Where-Object { $_.Extension -in @(".js", ".ps1") }
|
|
62
62
|
foreach ($f in $hookFiles) {
|
|
63
63
|
Copy-Item -Path $f.FullName -Destination (Join-Path $hooksDir $f.Name) -Force
|
|
64
64
|
}
|
|
@@ -85,47 +85,53 @@ if ($SkipHooks) {
|
|
|
85
85
|
SessionStart = @(
|
|
86
86
|
[PSCustomObject]@{
|
|
87
87
|
hooks = @(
|
|
88
|
-
[PSCustomObject]@{ type = "command"; command = "
|
|
89
|
-
[PSCustomObject]@{ type = "command"; command = "
|
|
88
|
+
[PSCustomObject]@{ type = "command"; command = "powershell.exe -NoProfile -NonInteractive -ExecutionPolicy Bypass -WindowStyle Hidden -File `"$hooksBase/run-hidden-hook.ps1`" `"$hooksBase/check-cwd.js`"" },
|
|
89
|
+
[PSCustomObject]@{ type = "command"; command = "powershell.exe -NoProfile -NonInteractive -ExecutionPolicy Bypass -WindowStyle Hidden -File `"$hooksBase/run-hidden-hook.ps1`" `"$hooksBase/check-stale-work-items.js`""; statusMessage = "Checking for stale work items..." }
|
|
90
90
|
)
|
|
91
91
|
}
|
|
92
92
|
)
|
|
93
93
|
PreToolUse = @(
|
|
94
|
+
[PSCustomObject]@{
|
|
95
|
+
hooks = @(
|
|
96
|
+
[PSCustomObject]@{ type = "command"; command = "powershell.exe -NoProfile -NonInteractive -ExecutionPolicy Bypass -WindowStyle Hidden -File `"$hooksBase/run-hidden-hook.ps1`" `"$hooksBase/foreground-process-gate.js`""; statusMessage = "Checking foreground process policy..." },
|
|
97
|
+
[PSCustomObject]@{ type = "command"; command = "powershell.exe -NoProfile -NonInteractive -ExecutionPolicy Bypass -WindowStyle Hidden -File `"$hooksBase/run-hidden-hook.ps1`" `"$hooksBase/work-item-exit-gate.js`""; statusMessage = "Checking work item exit gates..." }
|
|
98
|
+
)
|
|
99
|
+
},
|
|
94
100
|
[PSCustomObject]@{
|
|
95
101
|
matcher = "Bash"
|
|
96
102
|
hooks = @(
|
|
97
|
-
[PSCustomObject]@{ type = "command"; command = "
|
|
103
|
+
[PSCustomObject]@{ type = "command"; command = "powershell.exe -NoProfile -NonInteractive -ExecutionPolicy Bypass -WindowStyle Hidden -File `"$hooksBase/run-hidden-hook.ps1`" `"$hooksBase/require-work-item-on-commit.js`"" }
|
|
98
104
|
)
|
|
99
105
|
}
|
|
100
106
|
)
|
|
101
107
|
PostToolUse = @(
|
|
102
108
|
[PSCustomObject]@{
|
|
103
109
|
hooks = @(
|
|
104
|
-
[PSCustomObject]@{ type = "command"; command = "
|
|
110
|
+
[PSCustomObject]@{ type = "command"; command = "powershell.exe -NoProfile -NonInteractive -ExecutionPolicy Bypass -WindowStyle Hidden -File `"$hooksBase/run-hidden-hook.ps1`" `"$hooksBase/check-services.js`"" }
|
|
105
111
|
)
|
|
106
112
|
}
|
|
107
113
|
)
|
|
108
114
|
PreCompact = @(
|
|
109
115
|
[PSCustomObject]@{
|
|
110
116
|
hooks = @(
|
|
111
|
-
[PSCustomObject]@{ type = "command"; command = "
|
|
117
|
+
[PSCustomObject]@{ type = "command"; command = "powershell.exe -NoProfile -NonInteractive -ExecutionPolicy Bypass -WindowStyle Hidden -File `"$hooksBase/run-hidden-hook.ps1`" `"$hooksBase/precompact-log.js`"" }
|
|
112
118
|
)
|
|
113
119
|
}
|
|
114
120
|
)
|
|
115
121
|
PostCompact = @(
|
|
116
122
|
[PSCustomObject]@{
|
|
117
123
|
hooks = @(
|
|
118
|
-
[PSCustomObject]@{ type = "command"; command = "
|
|
119
|
-
[PSCustomObject]@{ type = "command"; command = "
|
|
124
|
+
[PSCustomObject]@{ type = "command"; command = "powershell.exe -NoProfile -NonInteractive -ExecutionPolicy Bypass -WindowStyle Hidden -File `"$hooksBase/run-hidden-hook.ps1`" `"$hooksBase/postcompact-log.js`"" },
|
|
125
|
+
[PSCustomObject]@{ type = "command"; command = "powershell.exe -NoProfile -NonInteractive -ExecutionPolicy Bypass -WindowStyle Hidden -File `"$hooksBase/run-hidden-hook.ps1`" `"$hooksBase/restart-brief.js`""; statusMessage = "Writing restart brief..." }
|
|
120
126
|
)
|
|
121
127
|
}
|
|
122
128
|
)
|
|
123
129
|
Stop = @(
|
|
124
130
|
[PSCustomObject]@{
|
|
125
131
|
hooks = @(
|
|
126
|
-
[PSCustomObject]@{ type = "command"; command = "
|
|
127
|
-
[PSCustomObject]@{ type = "command"; command = "
|
|
128
|
-
[PSCustomObject]@{ type = "command"; command = "
|
|
132
|
+
[PSCustomObject]@{ type = "command"; command = "powershell.exe -NoProfile -NonInteractive -ExecutionPolicy Bypass -WindowStyle Hidden -File `"$hooksBase/run-hidden-hook.ps1`" `"$hooksBase/rate-limit-retry.js`""; statusMessage = "Checking for rate limits..." },
|
|
133
|
+
[PSCustomObject]@{ type = "command"; command = "powershell.exe -NoProfile -NonInteractive -ExecutionPolicy Bypass -WindowStyle Hidden -File `"$hooksBase/run-hidden-hook.ps1`" `"$hooksBase/post-work-check.js`""; statusMessage = "Checking for undocumented work..." },
|
|
134
|
+
[PSCustomObject]@{ type = "command"; command = "powershell.exe -NoProfile -NonInteractive -ExecutionPolicy Bypass -WindowStyle Hidden -File `"$hooksBase/run-hidden-hook.ps1`" `"$hooksBase/no-stop-open-epics.js`""; statusMessage = "Checking for open epics..." }
|
|
129
135
|
)
|
|
130
136
|
}
|
|
131
137
|
)
|