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
if grep -q '^version[[:space:]]*=' agents/df-publisher.toml; then
23
-
echo "::error::agents/df-publisher.toml must not use top-level version = because Codex agent TOML reserves that field; use # devflow-version = \"...\" instead"
24
+
echo "::error::agents/df-publisher.toml must not use top-level version = because Codex agent TOML reserves that field; use # devopsflow-version = \"...\" instead"
24
25
exit 1
25
26
fi
26
-
AGENT_VERSION=$(grep '^#[[:space:]]*devflow-version[[:space:]]*=' agents/df-publisher.toml | head -1 | sed 's/.*"\(.*\)"/\1/')
27
+
AGENT_VERSION=$(grep '^#[[:space:]]*devopsflow-version[[:space:]]*=' agents/df-publisher.toml | head -1 | sed 's/.*"\(.*\)"/\1/')
DevFlow can use project-owned style packs after the business design is clear. A style pack is not a shared DevFlow template; it is repository-owned material that helps agents preserve local implementation style through rules, golden examples, anti-patterns, and review checklists.
132
+
DevOpsFlow can use project-owned style packs after the business design is clear. A style pack is not a shared DevOpsFlow template; it is repository-owned material that helps agents preserve local implementation style through rules, golden examples, anti-patterns, and review checklists.
133
133
134
134
Project-owned style packs have one default discovery location:
135
135
136
136
```text
137
-
.devflow/style-pack/
137
+
.devopsflow/style-pack/
138
138
```
139
139
140
140
Recommended shape:
141
141
142
142
```text
143
-
.devflow/style-pack/
143
+
.devopsflow/style-pack/
144
144
<style-pack-name>/
145
145
.pack.toml
146
146
rules.md
@@ -151,7 +151,7 @@ Recommended shape:
151
151
152
152
`.pack.toml` describes metadata such as scope, applicable task types, primary examples, verification commands, review checks, and known exclusions.
153
153
154
-
Use style packs with `df-glue-coding` after DDD, CQRS, API, security, validation, and persistence constraints are already respected. Keep project-specific examples in the project repository, not in this public DevFlow repository.
154
+
Use style packs with `df-glue-coding` after DDD, CQRS, API, security, validation, and persistence constraints are already respected. Keep project-specific examples in the project repository, not in this public DevOpsFlow repository.
155
155
156
156
## 开发
157
157
@@ -187,6 +187,12 @@ DDD 设计校验回归:
187
187
bun test skills/df-ddd-event-storming-design/scripts/
188
188
```
189
189
190
+
IAM 授权标识符校验回归:
191
+
192
+
```bash
193
+
bun test skills/df-iam-access-control-design/scripts/
0 commit comments