@lemoncode/lemony 0.2.0 → 0.3.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.
@@ -13,7 +13,8 @@ in `.claude/agents/triage.md` (the orchestrator's lazy companion). This command
13
13
  question to capture it, then proceed.
14
14
 
15
15
  In brief (authority is the orchestrator): triage the codebase to find the root cause
16
- and draft a TDD-based fix plan (`triage-issue`), creating the issue with
16
+ draft a TDD-based fix plan and declare the risk surfaces (`triage-issue`), creating
17
+ the issue with
17
18
  `harness:managed` (no `harness:sdd` — its absence marks the lightweight path), then
18
19
  branch and scaffold `progress.md`, implement (`tdd`), review (`senior-review`), and
19
20
  run the human merge gate before closeout. L2 skips the spec and its approval gate, but
@@ -92,6 +92,46 @@
92
92
  }
93
93
  },
94
94
  "additionalProperties": false
95
+ },
96
+ "merge": {
97
+ "default": {},
98
+ "type": "object",
99
+ "properties": {
100
+ "checks_timeout_secs": {
101
+ "default": 600,
102
+ "type": "integer",
103
+ "exclusiveMinimum": 0,
104
+ "maximum": 9007199254740991
105
+ },
106
+ "allow_no_checks": {
107
+ "default": false,
108
+ "type": "boolean"
109
+ }
110
+ },
111
+ "additionalProperties": false
112
+ },
113
+ "implementation": {
114
+ "default": {},
115
+ "type": "object",
116
+ "properties": {
117
+ "pre_commit_review": {
118
+ "default": "human",
119
+ "type": "string",
120
+ "enum": [
121
+ "human",
122
+ "on",
123
+ "off"
124
+ ]
125
+ }
126
+ },
127
+ "additionalProperties": false
128
+ },
129
+ "gates": {
130
+ "type": "array",
131
+ "items": {
132
+ "type": "string",
133
+ "minLength": 1
134
+ }
95
135
  }
96
136
  },
97
137
  "required": [