@lemoncode/lemony 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 (68) hide show
  1. package/LICENSE +21 -0
  2. package/PRIVACY.md +147 -0
  3. package/README.md +189 -0
  4. package/catalog/VERSION +1 -0
  5. package/catalog/agents/README.md +29 -0
  6. package/catalog/agents/architect.md +81 -0
  7. package/catalog/agents/fit-assessment.md +94 -0
  8. package/catalog/agents/implementer.md +67 -0
  9. package/catalog/agents/orchestrator.md +627 -0
  10. package/catalog/agents/reviewer.md +124 -0
  11. package/catalog/agents/spec-author.md +69 -0
  12. package/catalog/agents/ui-designer.md +25 -0
  13. package/catalog/commands/add-capability.md +69 -0
  14. package/catalog/commands/bypass.md +40 -0
  15. package/catalog/commands/define.md +24 -0
  16. package/catalog/commands/hotfix.md +47 -0
  17. package/catalog/commands/pause.md +52 -0
  18. package/catalog/commands/resume.md +56 -0
  19. package/catalog/commands/spinoff.md +59 -0
  20. package/catalog/commands/triage.md +24 -0
  21. package/catalog/harness.config.schema.json +116 -0
  22. package/catalog/hooks/README.md +56 -0
  23. package/catalog/hooks/init.sh +281 -0
  24. package/catalog/hooks/lib/lemony.sh +41 -0
  25. package/catalog/hooks/lib/playbook-scan.sh +394 -0
  26. package/catalog/hooks/lib/transcript-grep.sh +56 -0
  27. package/catalog/hooks/require-playbook.sh +97 -0
  28. package/catalog/hooks/session-close.sh +232 -0
  29. package/catalog/hooks/suggest-playbook.sh +72 -0
  30. package/catalog/playbook-format.md +198 -0
  31. package/catalog/schemas/README.md +13 -0
  32. package/catalog/schemas/tier2-events-history.md +104 -0
  33. package/catalog/schemas/tier2-events.md +286 -0
  34. package/catalog/skills/README.md +62 -0
  35. package/catalog/skills/bootstrap-architecture/SKILL.md +78 -0
  36. package/catalog/skills/code-explorer/SKILL.md +76 -0
  37. package/catalog/skills/grill-with-docs/ADR-FORMAT.md +49 -0
  38. package/catalog/skills/grill-with-docs/CONTEXT-FORMAT.md +77 -0
  39. package/catalog/skills/grill-with-docs/SKILL.md +270 -0
  40. package/catalog/skills/grill-with-docs/reference.md +236 -0
  41. package/catalog/skills/mutation-testing/SKILL.md +84 -0
  42. package/catalog/skills/note-side-finding/SKILL.md +89 -0
  43. package/catalog/skills/playbook-iterate/SKILL.md +78 -0
  44. package/catalog/skills/prd-to-spec/SKILL.md +181 -0
  45. package/catalog/skills/raise-discovery/SKILL.md +112 -0
  46. package/catalog/skills/resolve-discovery/SKILL.md +123 -0
  47. package/catalog/skills/review-pr/SKILL.md +106 -0
  48. package/catalog/skills/review-pr/reference.md +105 -0
  49. package/catalog/skills/security-review/SKILL.md +90 -0
  50. package/catalog/skills/senior-review/SKILL.md +99 -0
  51. package/catalog/skills/silent-failure-hunter/SKILL.md +76 -0
  52. package/catalog/skills/spec-compliance-check/SKILL.md +74 -0
  53. package/catalog/skills/spec-to-issue/SKILL.md +88 -0
  54. package/catalog/skills/task-closeout/SKILL.md +229 -0
  55. package/catalog/skills/tdd/SKILL.md +171 -0
  56. package/catalog/skills/test-gap-report/SKILL.md +71 -0
  57. package/catalog/skills/triage-issue/SKILL.md +102 -0
  58. package/catalog/skills/update-architecture/SKILL.md +69 -0
  59. package/catalog/skills/verify/SKILL.md +90 -0
  60. package/catalog/skills/write-adr/SKILL.md +77 -0
  61. package/catalog/templates/README.md +32 -0
  62. package/catalog/templates/claude-code/.claude/settings.json.tpl +34 -0
  63. package/catalog/templates/claude-code/agents.md.tpl +109 -0
  64. package/catalog/templates/claude-code/docs/playbooks/README.md.tpl +96 -0
  65. package/catalog/templates/claude-code/harness.config.yml.tpl +59 -0
  66. package/catalog/templates/claude-code/state/history.md.tpl +6 -0
  67. package/dist/cli.mjs +5691 -0
  68. package/package.json +80 -0
package/package.json ADDED
@@ -0,0 +1,80 @@
1
+ {
2
+ "name": "@lemoncode/lemony",
3
+ "version": "0.1.0",
4
+ "description": "Lemony — a Harness for AI Coding. Vendor package: installer, agent role catalog, generic skill catalog, hooks, and templates for a Spec-Driven Development workflow.",
5
+ "type": "module",
6
+ "private": false,
7
+ "license": "MIT",
8
+ "author": "Daniel Sánchez Muñoz",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/lemoncode/lemony.git"
12
+ },
13
+ "bin": {
14
+ "lemony": "./dist/cli.mjs"
15
+ },
16
+ "files": [
17
+ "dist",
18
+ "catalog",
19
+ "README.md",
20
+ "PRIVACY.md"
21
+ ],
22
+ "engines": {
23
+ "node": ">=24",
24
+ "npm": ">=11"
25
+ },
26
+ "publishConfig": {
27
+ "registry": "https://registry.npmjs.org",
28
+ "access": "public"
29
+ },
30
+ "keywords": [
31
+ "harness",
32
+ "ai-coding",
33
+ "claude-code",
34
+ "spec-driven-development",
35
+ "sdd",
36
+ "agents",
37
+ "scaffolding"
38
+ ],
39
+ "scripts": {
40
+ "build": "tsdown",
41
+ "check-types": "tsc --noEmit",
42
+ "test": "tsdown && vitest run --passWithNoTests",
43
+ "test:mutation": "stryker run",
44
+ "test:watch": "vitest",
45
+ "test:coverage": "vitest run --coverage --passWithNoTests",
46
+ "lint": "oxlint .",
47
+ "lint:fix": "oxlint --fix .",
48
+ "format": "prettier --write .",
49
+ "format:check": "prettier --check .",
50
+ "schema:generate": "tsx scripts/generate-config-schema.ts",
51
+ "schema:check": "tsx scripts/generate-config-schema.ts --check",
52
+ "telemetry:aggregate": "tsx scripts/aggregate-telemetry.ts",
53
+ "changeset": "changeset",
54
+ "changeset:version": "changeset version && tsx scripts/sync-catalog-version.ts",
55
+ "changeset:publish": "node --run build && changeset publish"
56
+ },
57
+ "devDependencies": {
58
+ "@changesets/cli": "2.31.0",
59
+ "@stryker-mutator/core": "9.6.1",
60
+ "@stryker-mutator/vitest-runner": "9.6.1",
61
+ "@types/node": "24.13.2",
62
+ "oxlint": "1.70.0",
63
+ "prettier": "3.8.4",
64
+ "tsdown": "0.22.3",
65
+ "tsx": "4.22.4",
66
+ "typescript": "6.0.3",
67
+ "vitest": "4.1.9"
68
+ },
69
+ "dependencies": {
70
+ "yaml": "2.9.0",
71
+ "zod": "4.4.3"
72
+ },
73
+ "overrides": {
74
+ "typed-rest-client": {
75
+ "qs": "6.15.2"
76
+ },
77
+ "js-yaml": "4.2.0",
78
+ "vite": "8.0.16"
79
+ }
80
+ }