flight-rules 0.13.5 → 0.13.7
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.
- package/package.json +1 -1
- package/payload/AGENTS.md +30 -1
package/package.json
CHANGED
package/payload/AGENTS.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Flight Rules – Agent Guidelines
|
|
2
2
|
|
|
3
|
-
flight_rules_version: 0.13.
|
|
3
|
+
flight_rules_version: 0.13.7
|
|
4
4
|
|
|
5
5
|
This file defines how agents (Claude Code, Cursor, etc.) should work on software projects using the Flight Rules system.
|
|
6
6
|
|
|
@@ -134,6 +134,35 @@ When working on code:
|
|
|
134
134
|
- Any deviations from original plan
|
|
135
135
|
- Updated `Status:` values
|
|
136
136
|
|
|
137
|
+
### Spec Evolution (No Version History)
|
|
138
|
+
|
|
139
|
+
Implementation specs describe **the current intended state** of the system. They are not changelogs.
|
|
140
|
+
|
|
141
|
+
**When requirements change:**
|
|
142
|
+
- Update specs to reflect the new reality. Delete descriptions of old approaches.
|
|
143
|
+
- Do NOT add "v2" sections alongside "v1" descriptions
|
|
144
|
+
- Do NOT create separate documents for new versions (e.g., `design-decisions-v2.md`)
|
|
145
|
+
- Do NOT maintain comparison tables showing "what was vs what is now"
|
|
146
|
+
|
|
147
|
+
**Where history belongs:**
|
|
148
|
+
- Git commits and diffs preserve what changed
|
|
149
|
+
- Session logs in `docs/session_logs/` capture decision context and rationale
|
|
150
|
+
- `docs/progress.md` tracks milestones chronologically
|
|
151
|
+
|
|
152
|
+
**Think of specs like source code**: When you refactor a function, you don't leave the old implementation
|
|
153
|
+
commented out with notes explaining how it used to work. You update it and trust Git to preserve history.
|
|
154
|
+
|
|
155
|
+
**Example of what NOT to do:**
|
|
156
|
+
- "v2 Requirements" as a separate document
|
|
157
|
+
- "Key Changes from v1" tables
|
|
158
|
+
- Task titles like "2.1.1. Plans Table (v2)"
|
|
159
|
+
- "Migration Notes" sections explaining what's being deleted
|
|
160
|
+
|
|
161
|
+
**Example of what TO do:**
|
|
162
|
+
- Single authoritative document describing current design
|
|
163
|
+
- Update existing task groups when approach changes
|
|
164
|
+
- Delete obsolete task groups entirely
|
|
165
|
+
|
|
137
166
|
---
|
|
138
167
|
|
|
139
168
|
## 4. Coding sessions
|