Skip to content

Commit 2ee3d3c

Browse files
authored
Merge pull request #191 from buildermethods/v2.0.3
V2.0.3
2 parents 64bc947 + bf431c2 commit 2ee3d3c

28 files changed

+208
-108
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to Agent OS will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [2.0.3] - 2025-10-10
9+
10+
- Updated instructions and default standards to reduce excessive tests writing and test running during feature development to improve speed and token useage.
11+
- For Claude Code users:
12+
- Replaced hard-coding of 'opus' model setting on agents with 'inherit' so that it inherits whichever model your Claude Code is currently using.
13+
- Updated create-role script to add the "Inherit" option when creating new agents.
14+
- Clarified next command to run when in single-agent mode.
15+
816
## [2.0.2] - 2025-10-09
917

1018
- Clarified /create-spec command so that task list creation doesn't begin until spec.md has been written.

config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 2.0.0
1+
version: 2.0.3
22
base_install: true
33

44
# ================================================

profiles/default/agents/implementation-verifier.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: implementation-verifier
33
description: Verify the end-to-end implementation of a spec
44
tools: Write, Read, Bash, WebFetch, Playwright
55
color: green
6-
model: opus
6+
model: inherit
77
---
88

99
You are a product spec verifier responsible for verifying the end-to-end implementation of a spec, updating the product roadmap (if necessary), and producing a final verification report.

profiles/default/agents/product-planner.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: product-planner
33
description: Create product documentation including mission, and roadmap
44
tools: Write, Read, Bash, WebFetch
55
color: cyan
6-
model: opus
6+
model: inherit
77
---
88

99
You are a product planning specialist. Your role is to create comprehensive product documentation including mission, and development roadmap.

profiles/default/agents/specification/spec-researcher.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: spec-researcher
33
description: Gather detailed requirements through targeted questions and visual analysis
44
tools: Write, Read, Bash, WebFetch
55
color: blue
6-
model: opus
6+
model: inherit
77
---
88

99
You are a software product requirements research specialist. Your role is to gather comprehensive requirements through targeted questions and visual analysis.

profiles/default/agents/specification/spec-writer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: spec-writer
33
description: Create a detailed specification document for development
44
tools: Write, Read, Bash, WebFetch
55
color: purple
6-
model: opus
6+
model: inherit
77
---
88

99
You are a software product specifications writer. Your role is to create a detailed specification document for development.

profiles/default/agents/specification/tasks-list-creator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: task-list-creator
33
description: Create a detailed and strategic tasks list for development of a spec
44
tools: Write, Read, Bash, WebFetch
55
color: orange
6-
model: opus
6+
model: inherit
77
---
88

99
You are a software product tasks list writer and planner. Your role is to create a detailed tasks list with strategic groupings and orderings of tasks for the development of a spec.

profiles/default/agents/templates/verifier.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ Read the following files to understand the user's standards and preferences so t
4848

4949
{{verifier_standards}}
5050

51-
### Step 4: Run the tests that were written for the tasks under your verification purview
51+
### Step 4: Run ONLY the tests that were written by the implementer of the tasks under your verification purview
5252

53-
IF the tasks under your verification purview involved writing of tests, then run ONLY those specific tests and note how many are passing and failing.
53+
IF the implementer of the tasks under your verification purview wrote tests that cover this implementation, then run ONLY those specific tests and note how many are passing and failing. Do NOT run the entire app's tests suite.
5454

55-
If any are failing then note the failures, but DO NOT try to implement fixes.
55+
If any tests are failing then note the failures, but DO NOT try to implement fixes.
5656

5757
### Step 5: (if applicable) view and screenshot the implemented features in a browser
5858

profiles/default/commands/create-spec/single-agent/2-create-tasks-list.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ The tasks list has created at `agent-os/specs/[this-spec]/tasks.md`.
1111
1212
Review it closely to make sure it all looks good.
1313
14-
Next step: Run the command, 3-verify-spec.md to closely verify your spec and tasks list for accuracy and alignment. Or you can skip straight to running the implement-spec.md command if you're ready.
14+
Next step: Run the command, `3-verify-spec.md`.
15+
16+
Or if want, you can skip straight to running the `implement-spec.md` command.
1517
```
1618

1719
## User Standards & Preferences Compliance

profiles/default/commands/create-spec/single-agent/3-verify-spec.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Your spec verification report is ready at `agent-os/specs/[this-spec]/verificati
1313
1414
Review it closely to make sure it all looks good.
1515
16-
Next step: Run the command, implement-spec.md to generate prompts for implementation.
16+
Next step: Run the command, `implement-spec.md` to generate prompts for implementation.
1717
```
1818

1919
## User Standards & Preferences Compliance

0 commit comments

Comments
 (0)