coding-agent-skills 0.2.13 → 0.2.15

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 (69) hide show
  1. package/CHANGELOG.md +42 -0
  2. package/README.md +9 -1
  3. package/ROADMAP.md +7 -3
  4. package/bin/coding-agent-skills +14 -0
  5. package/docs/adapters/README.md +39 -0
  6. package/docs/adapters/project-installation.md +26 -0
  7. package/docs/adapters/real-project-adoption.md +2 -1
  8. package/docs/architecture/README.md +5 -3
  9. package/docs/release/README.md +3 -2
  10. package/docs/release/npm-package.md +12 -2
  11. package/docs/safety/README.md +11 -1
  12. package/docs/testing/README.md +16 -0
  13. package/docs/usage/README.md +25 -5
  14. package/examples/command-policies/deployment-preflight.json +70 -0
  15. package/examples/command-policies/github-handoff.json +74 -0
  16. package/examples/evidence-packs/deployment-preflight.json +60 -0
  17. package/examples/evidence-packs/github-handoff.json +67 -0
  18. package/examples/manifests/deployment-preflight.json +14 -0
  19. package/examples/manifests/github-handoff.json +14 -0
  20. package/examples/workflows/deployment-preflight.md +8 -0
  21. package/examples/workflows/github-handoff.md +5 -0
  22. package/package.json +3 -1
  23. package/runs/skill-runs.md +35 -0
  24. package/schemas/project-adapter-installation.schema.json +4 -0
  25. package/schemas/project-adapter.schema.json +4 -0
  26. package/scripts/lib/deployment-preflight.mjs +655 -0
  27. package/scripts/lib/github-handoff.mjs +446 -0
  28. package/scripts/lib/pack-rules.mjs +20 -2
  29. package/scripts/render-deployment-preflight.mjs +9 -0
  30. package/scripts/render-github-handoff.mjs +7 -0
  31. package/scripts/test-pack.mjs +148 -1
  32. package/scripts/validate-pack.mjs +8 -2
  33. package/skills/deployment-preflight/SKILL.md +89 -0
  34. package/skills/deployment-preflight/adapter-interface.md +17 -0
  35. package/skills/deployment-preflight/agents/openai.yaml +3 -0
  36. package/skills/deployment-preflight/checklist.md +7 -0
  37. package/skills/deployment-preflight/evidence-template.md +19 -0
  38. package/skills/deployment-preflight/examples.md +11 -0
  39. package/skills/deployment-preflight/failure-modes.md +11 -0
  40. package/skills/github-handoff/SKILL.md +95 -0
  41. package/skills/github-handoff/adapter-interface.md +18 -0
  42. package/skills/github-handoff/agents/openai.yaml +3 -0
  43. package/skills/github-handoff/checklist.md +10 -0
  44. package/skills/github-handoff/evidence-template.md +16 -0
  45. package/skills/github-handoff/examples.md +19 -0
  46. package/skills/github-handoff/failure-modes.md +8 -0
  47. package/tests/fixtures/deployment-preflight/adapter-project/.coding-agent/adapters/deployment-preflight-fixture/adapter.json +56 -0
  48. package/tests/fixtures/deployment-preflight/adapter-project/.coding-agent/skills.json +23 -0
  49. package/tests/fixtures/deployment-preflight/adapter-project/README.md +3 -0
  50. package/tests/fixtures/deployment-preflight/adapter-project/deploy/netlify.toml +3 -0
  51. package/tests/fixtures/deployment-preflight/adapter-project/ignored/render.yaml +3 -0
  52. package/tests/fixtures/deployment-preflight/adapter-project/package.json +5 -0
  53. package/tests/fixtures/deployment-preflight/static-project/Dockerfile +2 -0
  54. package/tests/fixtures/deployment-preflight/static-project/README.md +3 -0
  55. package/tests/fixtures/deployment-preflight/static-project/docs/deployment.md +4 -0
  56. package/tests/fixtures/deployment-preflight/static-project/package.json +6 -0
  57. package/tests/fixtures/deployment-preflight/static-project/src/index.js +1 -0
  58. package/tests/fixtures/deployment-preflight/static-project/wrangler.toml +3 -0
  59. package/tests/fixtures/github-handoff/adapter-project/.coding-agent/adapters/github-handoff-fixture/adapter.json +56 -0
  60. package/tests/fixtures/github-handoff/adapter-project/.coding-agent/skills.json +23 -0
  61. package/tests/fixtures/github-handoff/adapter-project/README.md +3 -0
  62. package/tests/fixtures/github-handoff/adapter-project/package.json +4 -0
  63. package/tests/fixtures/github-handoff/adapter-project/src/index.js +1 -0
  64. package/tests/fixtures/github-handoff/static-project/README.md +3 -0
  65. package/tests/fixtures/github-handoff/static-project/package.json +4 -0
  66. package/tests/fixtures/github-handoff/static-project/src/index.js +1 -0
  67. package/tests/fixtures/triggers/cases.json +26 -2
  68. package/tests/trigger/README.md +4 -0
  69. package/work-ledger.md +28 -6
@@ -0,0 +1,67 @@
1
+ {
2
+ "contractVersion": "1.0.0",
3
+ "skill": {"name": "github-handoff", "version": "0.2.3"},
4
+ "invocation": {
5
+ "id": "example-github-handoff",
6
+ "startedAt": "2026-07-03T12:00:00Z",
7
+ "endedAt": "2026-07-03T12:01:00Z"
8
+ },
9
+ "repository": {
10
+ "root": "/workspace/example-project",
11
+ "branch": "main",
12
+ "head": "0123456789abcdef",
13
+ "workingTreeState": "dirty"
14
+ },
15
+ "userIntent": "Prepare a read-only GitHub handoff report.",
16
+ "declaredScope": ["/workspace/example-project"],
17
+ "projectAdapter": "none",
18
+ "environmentSummary": {"platform": "linux", "shell": "bash"},
19
+ "status": "complete",
20
+ "confidence": {
21
+ "level": "high",
22
+ "reason": "Local Git metadata and changed-file summary were collected without mutation."
23
+ },
24
+ "commands": [
25
+ {
26
+ "command": "coding-agent-skills github-handoff /workspace/example-project",
27
+ "family": "github-handoff-renderer",
28
+ "workingDirectory": "/workspace/example-project",
29
+ "startedAt": "2026-07-03T12:00:20Z",
30
+ "endedAt": "2026-07-03T12:00:21Z",
31
+ "exitStatus": 0,
32
+ "resultStatus": "success",
33
+ "safetyClass": "allowed",
34
+ "approvalReference": null,
35
+ "purpose": "Render local Git handoff evidence.",
36
+ "outputSummary": "Reported branch state, HEAD, tags at HEAD, remote names, and changed-file summary without printing remote URLs."
37
+ }
38
+ ],
39
+ "skippedChecks": [
40
+ {
41
+ "name": "GitHub API state",
42
+ "reason": "The skill is local and read-only.",
43
+ "consequence": "PR, CI, and review state are not verified.",
44
+ "completionPermitted": true
45
+ }
46
+ ],
47
+ "findings": [
48
+ {
49
+ "summary": "Working-tree handoff evidence was mapped.",
50
+ "evidence": ["branch state", "HEAD", "changed-file summary"]
51
+ }
52
+ ],
53
+ "risks": [
54
+ {
55
+ "summary": "Remote PR and CI state were not checked.",
56
+ "evidence": ["GitHub API access was not used"]
57
+ }
58
+ ],
59
+ "failures": [],
60
+ "unresolvedQuestions": [],
61
+ "changedState": {
62
+ "changed": false,
63
+ "summary": "No project, Git, GitHub, dependency, runtime, service, or remote state changed."
64
+ },
65
+ "handoffSummary": "Local Git handoff evidence is available; GitHub remote state remains unverified.",
66
+ "recommendedNextAction": "Review the handoff report before approving any GitHub mutation."
67
+ }
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "deployment-preflight",
3
+ "version": "0.2.3",
4
+ "mode": "audit-only",
5
+ "evidenceContract": "../../contracts/evidence-pack/evidence-pack.schema.json",
6
+ "commandPolicy": "../command-policies/deployment-preflight.json",
7
+ "adapterSchema": "../../schemas/project-adapter.schema.json",
8
+ "adapterCompatibility": {
9
+ "contractVersion": "1.0.0",
10
+ "compatibleAdapterVersions": ["1.0.0"]
11
+ },
12
+ "adapterInterface": "../../skills/deployment-preflight/adapter-interface.md",
13
+ "description": "Map static deployment readiness evidence without deployment behavior."
14
+ }
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "github-handoff",
3
+ "version": "0.2.3",
4
+ "mode": "audit-only",
5
+ "evidenceContract": "../../contracts/evidence-pack/evidence-pack.schema.json",
6
+ "commandPolicy": "../command-policies/github-handoff.json",
7
+ "adapterSchema": "../../schemas/project-adapter.schema.json",
8
+ "adapterCompatibility": {
9
+ "contractVersion": "1.0.0",
10
+ "compatibleAdapterVersions": ["1.0.0"]
11
+ },
12
+ "adapterInterface": "../../skills/github-handoff/adapter-interface.md",
13
+ "description": "Prepare local Git handoff evidence without GitHub mutation."
14
+ }
@@ -0,0 +1,8 @@
1
+ # Deployment Preflight Workflow
2
+
3
+ ```bash
4
+ coding-agent-skills deployment-preflight /workspace/project
5
+ ```
6
+
7
+ Use the output as static deployment orientation only. It does not deploy, call provider APIs,
8
+ install packages, run builds, run tests, start services, run migrations, or read secrets.
@@ -0,0 +1,5 @@
1
+ # GitHub Handoff Workflow
2
+
3
+ Run `coding-agent-skills github-handoff /path/to/project` to summarize local Git metadata and changed-file status before a separately approved GitHub action.
4
+
5
+ The workflow is audit-only: it does not commit, push, tag, create pull requests, call GitHub APIs, read tokens, read secret files, or write project files.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coding-agent-skills",
3
- "version": "0.2.13",
3
+ "version": "0.2.15",
4
4
  "description": "Evidence-first, read-only coding-agent skills and project adapter tooling.",
5
5
  "type": "module",
6
6
  "private": false,
@@ -14,6 +14,8 @@
14
14
  "secret-audit",
15
15
  "api-contract-audit",
16
16
  "migration-review",
17
+ "github-handoff",
18
+ "deployment-preflight",
17
19
  "project-adapters",
18
20
  "code-validation",
19
21
  "cli"
@@ -243,5 +243,40 @@ This file records bounded maintainer-loop runs. Entries must not contain secrets
243
243
  connections, no migration execution, no ORM generation, no package scripts, no builds,
244
244
  no tests in target projects, no deploys, and no target-project mutation.
245
245
  - Validation commands: pending final release validation matrix.
246
+ - Result: passed; `v0.2.13` was committed, pushed, tagged, published to npm, smoke-tested
247
+ from the registry, and released on GitHub.
248
+ - Commit/tag/push status: complete.
249
+
250
+ ## implementation-v0.2.14-github-handoff
251
+
252
+ - Run ID: `implementation-v0.2.14-github-handoff`
253
+ - Repository: `/home/oneclickwebsitedesignfactory/coding-agent-skills`
254
+ - Command used: `builder-mode approval for github-handoff-skill implementation and release`
255
+ - Files changed: `github-handoff` skill, GitHub handoff renderer and library, CLI wrapper,
256
+ adapter schemas, pack rules, release tests, synthetic handoff fixtures, usage/release/
257
+ safety/adapter docs, changelog, roadmap, work ledger, run log, and package metadata.
258
+ - Safety boundary: read-only local Git metadata only, no `.env` reads, no token reads, no
259
+ remote URL printing, no commits, no pushes, no tags, no pull request creation, no GitHub
260
+ API calls, and no target-project mutation.
261
+ - Validation commands: full source validation, package dry-run, tarball smoke, registry
262
+ install smoke, npm exec, and GitHub Release verification.
263
+ - Result: passed; `v0.2.14` was committed, pushed, tagged, published to npm, smoke-tested
264
+ from the registry, and released on GitHub.
265
+ - Commit/tag/push status: complete.
266
+
267
+ ## implementation-v0.2.15-deployment-preflight
268
+
269
+ - Run ID: `implementation-v0.2.15-deployment-preflight`
270
+ - Repository: `/home/oneclickwebsitedesignfactory/coding-agent-skills`
271
+ - Command used: `builder-mode approval for deployment-preflight-skill implementation and release`
272
+ - Files changed: `deployment-preflight` skill, deployment preflight renderer and library,
273
+ CLI wrapper, adapter schemas, pack rules, release tests, synthetic deployment fixtures,
274
+ usage/release/safety/adapter docs, changelog, roadmap, work ledger, run log, and package
275
+ metadata.
276
+ - Safety boundary: read-only static deployment evidence only, no `.env` reads, no provider
277
+ API calls, no provider CLI execution, no package installs, no builds, no tests, no
278
+ runtime checks, no service mutation, no deployments, no migrations, and no target-project
279
+ mutation.
280
+ - Validation commands: pending final release validation matrix.
246
281
  - Result: pass pending final publication evidence.
247
282
  - Commit/tag/push status: pending approved release workflow.
@@ -70,6 +70,8 @@
70
70
  "secret-audit",
71
71
  "api-contract-audit",
72
72
  "migration-review",
73
+ "github-handoff",
74
+ "deployment-preflight",
73
75
  "build-verify",
74
76
  "git-preflight",
75
77
  "runtime-truth",
@@ -107,6 +109,8 @@
107
109
  "secret-audit",
108
110
  "api-contract-audit",
109
111
  "migration-review",
112
+ "github-handoff",
113
+ "deployment-preflight",
110
114
  "build-verify",
111
115
  "git-preflight",
112
116
  "runtime-truth",
@@ -94,6 +94,8 @@
94
94
  "secret-audit",
95
95
  "api-contract-audit",
96
96
  "migration-review",
97
+ "github-handoff",
98
+ "deployment-preflight",
97
99
  "build-verify",
98
100
  "git-preflight",
99
101
  "runtime-truth",
@@ -175,6 +177,8 @@
175
177
  "secret-audit",
176
178
  "api-contract-audit",
177
179
  "migration-review",
180
+ "github-handoff",
181
+ "deployment-preflight",
178
182
  "build-verify",
179
183
  "git-preflight",
180
184
  "runtime-truth",