odd-studio 3.7.4 → 3.7.5

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.
@@ -136,6 +136,12 @@ build-gate)
136
136
  [ "$TOOL_NAME" = "Agent" ] || exit 0
137
137
  [ "$CURRENT_PHASE" = "build" ] || exit 0
138
138
 
139
+ # Quick-fix bypass: orchestrator can dispatch agents for small fixes without full swarm init.
140
+ # Marker has 1h TTL and must be explicitly created via `touch .odd/.odd-quick-fix`.
141
+ if marker_valid ".odd/.odd-quick-fix" 3600; then
142
+ exit 0
143
+ fi
144
+
139
145
  # Allow brief-generation and sync agents through
140
146
  AGENT_PROMPT=$(echo "$INPUT" | jq -r '.tool_input.prompt // empty' | head -c 300)
141
147
  if echo "$AGENT_PROMPT" | grep -qiE '(session.brief|session-brief|generate.*brief|odd-sync|fix.*hook|update.*hook)'; then
@@ -179,6 +185,13 @@ swarm-write)
179
185
  exit 0
180
186
  fi
181
187
 
188
+ # Quick-fix bypass: orchestrator can edit source directly for small fixes.
189
+ # Marker has 1h TTL and must be explicitly created via `touch .odd/.odd-quick-fix`.
190
+ # Use for single-file typo/type fixes where full swarm ceremony is overkill.
191
+ if marker_valid ".odd/.odd-quick-fix" 3600; then
192
+ exit 0
193
+ fi
194
+
182
195
  # Gate 2: Agent write token must be fresh (120s TTL)
183
196
  # Only Task agents create this token — the orchestrator must NOT.
184
197
  if ! marker_valid ".odd/.odd-flow-agent-token" 120; then
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "odd-studio",
3
- "version": "3.7.4",
3
+ "version": "3.7.5",
4
4
  "description": "Outcome-Driven Development for AI coding agents — a planning and build harness for domain experts building serious software with AI. Works with Claude Code, OpenCode, and Codex.",
5
5
  "keywords": [
6
6
  "claude-code",
package/skill/SKILL.md CHANGED
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: "odd"
3
- version: "3.7.4"
3
+ version: "3.7.5"
4
4
  description: "Outcome-Driven Development planning and build coach. Use /odd to start or resume an ODD project — building personas, writing outcomes, mapping contracts, creating a Master Implementation Plan, and directing a odd-flow-powered build. Designed for domain experts who are not developers. Works with Claude Code, OpenCode, and Codex."
5
5
  metadata:
6
6
  priority: 10
@@ -106,7 +106,7 @@ Display this when no existing state is found:
106
106
 
107
107
  ---
108
108
 
109
- Welcome to ODD Studio v3.7.4.
109
+ Welcome to ODD Studio v3.7.5.
110
110
 
111
111
  You are about to plan and build something real — using a methodology called Outcome-Driven Development. Before we write a single line of code, we are going to get precise about three things:
112
112
 
@@ -130,7 +130,7 @@ Display this when existing state is found. Replace the bracketed values with act
130
130
 
131
131
  ---
132
132
 
133
- Welcome back to ODD Studio v3.7.4.
133
+ Welcome back to ODD Studio v3.7.5.
134
134
 
135
135
  **Project:** [project.name]
136
136
  **Current Phase:** [state.currentPhase]
@@ -400,7 +400,7 @@ Execute the following steps in order:
400
400
 
401
401
  **1. Commit the verified state** via git with message: `feat: verified [outcome name] — [phase]`
402
402
 
403
- > **Note:** Automated Checkpoint/vibeguard scanning was removed in v3.7.4. The scanner flagged dep-lockfile CVEs as code vulnerabilities and made every commit impossible. Security scanning is reintroduced only with a scanner that can distinguish code findings from lockfile findings. In the meantime, domain experts remain responsible for flagging anything suspicious during the verification walkthrough.
403
+ > **Note:** Automated Checkpoint/vibeguard scanning was removed in v3.7.5. The scanner flagged dep-lockfile CVEs as code vulnerabilities and made every commit impossible. Security scanning is reintroduced only with a scanner that can distinguish code findings from lockfile findings. In the meantime, domain experts remain responsible for flagging anything suspicious during the verification walkthrough.
404
404
 
405
405
  Call `mcp__odd-flow__memory_store` key `odd-outcome-[name]` with status `verified`, namespace `odd-project`.
406
406