flight-rules 0.8.0 → 0.9.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.
- package/README.md +35 -2
- package/package.json +1 -1
- package/payload/AGENTS.md +1 -1
package/README.md
CHANGED
|
@@ -89,6 +89,28 @@ Two core flows:
|
|
|
89
89
|
|
|
90
90
|
Agents don't start these flows on their own; you explicitly invoke them.
|
|
91
91
|
|
|
92
|
+
### Available Commands
|
|
93
|
+
|
|
94
|
+
Flight Rules provides workflow commands that agents can execute:
|
|
95
|
+
|
|
96
|
+
| Command | Purpose |
|
|
97
|
+
|---------|---------|
|
|
98
|
+
| `/dev-session.start` | Begin a structured coding session with goals and plan |
|
|
99
|
+
| `/dev-session.end` | End session, summarize work, update progress |
|
|
100
|
+
| `/prd.create` | Create a Product Requirements Document |
|
|
101
|
+
| `/prd.clarify` | Refine specific sections of an existing PRD |
|
|
102
|
+
| `/impl.outline` | Create implementation area structure |
|
|
103
|
+
| `/impl.create` | Add detailed tasks to implementation specs |
|
|
104
|
+
| `/feature.add` | Add a new feature to PRD and implementation docs |
|
|
105
|
+
| `/test.add` | Add tests for specific functionality |
|
|
106
|
+
| `/test.assess-current` | Analyze existing test coverage |
|
|
107
|
+
| `/prompt.refine` | Iteratively improve a prompt |
|
|
108
|
+
| `/readme.create` | Generate README from PRD and project state |
|
|
109
|
+
| `/readme.reconcile` | Update README to reflect recent changes |
|
|
110
|
+
| `/prd.reconcile` | Update PRD based on what was actually built |
|
|
111
|
+
| `/impl.reconcile` | Update implementation docs with status changes |
|
|
112
|
+
| `/docs.reconcile` | Run all reconcile commands + consistency check |
|
|
113
|
+
|
|
92
114
|
### Versioning
|
|
93
115
|
|
|
94
116
|
Each project tracks which Flight Rules version it uses:
|
|
@@ -126,11 +148,22 @@ your-project/
|
|
|
126
148
|
│ ├── session-log.md
|
|
127
149
|
│ └── implementation/
|
|
128
150
|
│ └── overview.md
|
|
129
|
-
├── commands/
|
|
151
|
+
├── commands/ # Workflow commands
|
|
130
152
|
│ ├── dev-session.start.md
|
|
131
153
|
│ ├── dev-session.end.md
|
|
154
|
+
│ ├── prd.create.md
|
|
155
|
+
│ ├── prd.clarify.md
|
|
156
|
+
│ ├── impl.outline.md
|
|
157
|
+
│ ├── impl.create.md
|
|
158
|
+
│ ├── feature.add.md
|
|
132
159
|
│ ├── test.add.md
|
|
133
|
-
│
|
|
160
|
+
│ ├── test.assess-current.md
|
|
161
|
+
│ ├── prompt.refine.md
|
|
162
|
+
│ ├── readme.create.md
|
|
163
|
+
│ ├── readme.reconcile.md
|
|
164
|
+
│ ├── prd.reconcile.md
|
|
165
|
+
│ ├── impl.reconcile.md
|
|
166
|
+
│ └── docs.reconcile.md
|
|
134
167
|
└── prompts/ # Reusable prompt templates
|
|
135
168
|
```
|
|
136
169
|
|
package/package.json
CHANGED