-
Notifications
You must be signed in to change notification settings - Fork 0
314 lines (252 loc) · 7.61 KB
/
ci.yml
File metadata and controls
314 lines (252 loc) · 7.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
name: CI
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
repository-hygiene:
name: Repository hygiene
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: "24"
- name: Check required bootstrap paths
shell: bash
run: |
required_paths=(
"AGENTS.md"
"README.md"
"docs/FLOWMEMORY_HQ_CONTEXT.md"
"docs/START_HERE.md"
"docs/PROJECT_CHARTER.md"
"docs/CURRENT_STATE.md"
"docs/ROADMAP.md"
"docs/ARCHITECTURE.md"
"docs/SECURITY_MODEL.md"
"docs/AGENT_ROLES.md"
"docs/DECISIONS"
"contracts/FLOWPULSE_SCHEMA.md"
"contracts/FlowPulse.sol"
"contracts/RootfieldRegistry.sol"
"tests/README.md"
"tests/RootfieldRegistry.t.sol"
"contracts"
"services"
"services/flowmemory"
"schemas/flowmemory"
"fixtures/launch-core"
"apps"
"hardware"
"research"
"crypto"
"infra/scripts"
"infra/scripts/setup-worktrees.ps1"
"inbox/unsorted"
".github/pull_request_template.md"
".github/ISSUE_TEMPLATE/feature.yml"
".github/ISSUE_TEMPLATE/research.yml"
".github/ISSUE_TEMPLATE/hardware.yml"
".github/ISSUE_TEMPLATE/security.yml"
".github/ISSUE_TEMPLATE/bug.yml"
)
missing=0
for path in "${required_paths[@]}"; do
if [[ ! -e "$path" ]]; then
echo "::error::Missing required path: $path"
missing=1
fi
done
exit "$missing"
- name: Check for obvious committed secrets
shell: bash
run: |
patterns=(
'BEGIN (RSA|OPENSSH|PRIVATE) K[E]Y'
'AWS_SECRET_ACCESS_K[E]Y'
'PRIVATE_K[E]Y='
'SECRET_K[E]Y='
'gho_[A-Za-z0-9_]+'
)
for pattern in "${patterns[@]}"; do
if grep -RInE "$pattern" . --exclude-dir=.git; then
echo "::error::Potential secret detected. Remove it or document why this is a false positive."
exit 1
fi
done
- name: Check launch claim guardrails
run: node infra/scripts/check-unsafe-claims.mjs
public-readiness:
name: Public repository readiness
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: "24"
cache: npm
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Install root dependencies
run: npm ci
- name: Install dashboard dependencies
run: npm ci --prefix apps/dashboard
- name: Check public repository hardening
run: npm run public:hardening
- name: Run public tester suite
run: npm run public:test:all
contracts:
name: Contracts
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Run contract hardening baseline
run: bash infra/scripts/contracts-static-analysis.sh
services:
name: Services and launch core
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: "24"
cache: npm
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Install services dependencies
run: npm ci
- name: Run service tests
run: npm test
- name: Run service e2e
run: npm run e2e
- name: Validate launch schemas
run: npm run validate:launch
- name: Check generated fixture drift
run: npm run fixtures:check
launch-core:
name: Launch-core acceptance command
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: "24"
cache: npm
- name: Set up Rust
uses: dtolnay/rust-toolchain@stable
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install services dependencies
run: npm ci
- name: Run launch V0 command
run: npm run launch:v0
- name: Validate launch schemas
run: npm run validate:launch
agent-bonds:
name: Agent Bonds readiness
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: "24"
cache: npm
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Set up Rust
uses: dtolnay/rust-toolchain@stable
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install Slither
run: python -m pip install slither-analyzer
- name: Install services dependencies
run: npm ci
- name: Install dashboard dependencies
run: npm ci --prefix apps/dashboard
- name: Run Agent Bonds readiness pack
run: npm run flowmemory:agent-bonds:readiness
- name: Confirm only external public-launch blockers remain
run: npm run flowmemory:agent-bonds:public-launch:blockers
crypto:
name: Crypto
runs-on: ubuntu-latest
defaults:
run:
working-directory: crypto
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: "24"
cache: npm
cache-dependency-path: crypto/package-lock.json
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install crypto dependencies
run: npm ci
- name: Install Python crypto dependencies
run: python -m pip install pycryptodome
- name: Run crypto tests
run: npm test
- name: Validate crypto vectors
run: npm run validate:vectors
- name: Recompute Python FlowPulse vector
run: python validate_test_vectors.py
dashboard:
name: Dashboard
runs-on: ubuntu-latest
defaults:
run:
working-directory: apps/dashboard
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: "24"
cache: npm
cache-dependency-path: apps/dashboard/package-lock.json
- name: Install dashboard dependencies
run: npm ci
- name: Run dashboard tests
run: npm test
- name: Build dashboard
run: npm run build
hardware:
name: Hardware POC
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Validate FlowRouter simulator fixture
run: python hardware/simulator/flowrouter_sim.py --validate-file hardware/fixtures/flowrouter_sample_seed42.json