You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+28-1Lines changed: 28 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,32 @@ All notable changes to Agent OS will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
+
## [1.3.0] - 2025-08-01
9
+
10
+
### Added
11
+
-**Pre-flight Check System** - New `meta/pre-flight.md` instruction for centralized agent detection and initialization
12
+
-**Proactive Agent Usage** - Updated agent descriptions to encourage proactive use when appropriate
13
+
-**Structured Instruction Organization** - New folder structure with `core/` and `meta/` subdirectories
14
+
15
+
### Changed
16
+
-**Instruction File Structure** - Reorganized all instruction files into subdirectories:
17
+
- Core instructions moved to `instructions/core/` (plan-product, create-spec, execute-tasks, execute-task, analyze-product)
18
+
- Meta instructions in `instructions/meta/` (pre-flight, more to come)
19
+
-**Simplified XML Metadata** - Removed verbose `<ai_meta>` and `<step_metadata>` blocks for cleaner, more readable instructions
20
+
-**Subagent Integration** - Replaced manual agent detection with centralized pre-flight check across all instruction files to enforce delegation and preserve main agent's context.
21
+
-**Step Definitions** - Added `subagent` attribute to steps for clearer delegation of work to help enforce delegation and preserve main agent's context.
22
+
-**Setup Script** - Updated to create subdirectories and download files to new locations
23
+
24
+
### Improved
25
+
-**Code Clarity** - Removed redundant XML instructions in favor of descriptive step purposes
-**Maintainability** - Cleaner instruction format with less XML boilerplate
28
+
-**User Experience** - Clearer indication of when specialized agents will be used proactively
29
+
30
+
### Removed
31
+
-**CLAUDE.md** - Removed deprecated Claude Code configuration file (functionality moved to pre-flight system, preventing over-reading instructions into context)
Copy file name to clipboardExpand all lines: claude-code/agents/context-fetcher.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
name: context-fetcher
3
-
description: Retrieves and extracts relevant information from Agent OS documentation files. Checks if content is already in context before returning.
3
+
description: Use proactively to retrieve and extract relevant information from Agent OS documentation files. Checks if content is already in context before returning.
Copy file name to clipboardExpand all lines: claude-code/agents/file-creator.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
name: file-creator
3
-
description: Creates files, directories, and applies templates for Agent OS workflows. Handles batch file creation with proper structure and boilerplate.
3
+
description: Use proactively to create files, directories, and apply templates for Agent OS workflows. Handles batch file creation with proper structure and boilerplate.
4
4
tools: Write, Bash, Read
5
5
color: green
6
6
---
@@ -356,4 +356,4 @@ Files created successfully using [template_name] templates.
@@ -115,7 +105,7 @@ Install Agent OS into an existing codebase, analyze current product state and pr
115
105
</execution_parameters>
116
106
117
107
<execution_prompt>
118
-
@~/.agent-os/instructions/plan-product.md
108
+
@~/.agent-os/instructions/core/plan-product.md
119
109
120
110
I'm installing Agent OS into an existing product. Here's what I've gathered:
121
111
@@ -142,10 +132,7 @@ Install Agent OS into an existing codebase, analyze current product state and pr
142
132
143
133
### Step 4: Customize Generated Documentation
144
134
145
-
<step_metadata>
146
-
<refines>generated documentation</refines>
147
-
<ensures>accuracy for existing product</ensures>
148
-
</step_metadata>
135
+
Refine the generated documentation to ensure accuracy for the existing product by updating roadmap, tech stack, and decisions based on actual implementation.
149
136
150
137
<customization_tasks>
151
138
<roadmap_adjustment>
@@ -181,23 +168,14 @@ Install Agent OS into an existing codebase, analyze current product state and pr
181
168
[CONTINUE_WITH_STANDARD_PHASES]
182
169
</roadmap_template>
183
170
184
-
<instructions>
185
-
ACTION: Update generated files to reflect reality
186
-
MODIFY: Roadmap to show completed work
187
-
VERIFY: Tech stack matches actual implementation
188
-
ADD: Historical context to decisions.md
189
-
</instructions>
190
171
191
172
</step>
192
173
193
174
<stepnumber="5"name="final_verification">
194
175
195
176
### Step 5: Final Verification and Summary
196
177
197
-
<step_metadata>
198
-
<verifies>installation completeness</verifies>
199
-
<provides>next steps for user</provides>
200
-
</step_metadata>
178
+
Verify installation completeness and provide clear next steps for the user to start using Agent OS with their existing codebase.
201
179
202
180
<verification_checklist>
203
181
-[ ] .agent-os/product/ directory created
@@ -231,17 +209,12 @@ Install Agent OS into an existing codebase, analyze current product state and pr
231
209
3. See the Agent OS README for usage instructions: https://github.com/buildermethods/agent-os
0 commit comments