-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUnit09 Structure
More file actions
420 lines (411 loc) · 13.6 KB
/
Unit09 Structure
File metadata and controls
420 lines (411 loc) · 13.6 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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
unit09/
├─ README.md # Project overview, quickstart, philosophy
├─ LICENSE
├─ CONTRIBUTING.md # How to contribute
├─ CODE_OF_CONDUCT.md
├─ CHANGELOG.md
├─ SECURITY.md # Security policy, how to report vulnerabilities
├─ GOVERNANCE.md # Optional: project governance, decisions, roles
├─ package.json
├─ pnpm-workspace.yaml
├─ tsconfig.base.json
├─ .editorconfig
├─ .eslintrc.cjs
├─ .prettierrc
├─ .gitignore
├─ .dockerignore
├─ .nvmrc
├─ .env.example # Base env template
├─ .env.development.example
├─ .env.production.example
└─ config/
├─ default.yaml # Shared default config
├─ development.yaml
├─ production.yaml
└─ schema.json # JSON schema for config validation
contracts/
└─ unit09-program/
├─ Anchor.toml
├─ Cargo.toml
├─ Xargo.toml
├─ program-id.md
├─ programs/
│ └─ unit09_program/
│ └─ src/
│ ├─ lib.rs # main entry, module wiring
│ ├─ constants.rs # seeds, bumps, limits
│ ├─ errors.rs # on-chain error codes
│ ├─ events.rs # events: repo observed, module registered, fork created...
│ ├─ state/
│ │ ├─ config.rs # global config (admin, fees, limits)
│ │ ├─ repo.rs # tracked repositories
│ │ ├─ module.rs # generated modules metadata
│ │ ├─ module_version.rs# version history of modules
│ │ ├─ fork.rs # fork entities (Unit09 variants)
│ │ ├─ lifecycle.rs # status timeline, last activity
│ │ ├─ metrics.rs # counters, aggregates
│ │ └─ authority.rs # access roles, authority model
│ ├─ instructions/
│ │ ├─ mod.rs
│ │ ├─ initialize.rs # init config
│ │ ├─ set_config.rs # update config (authorized)
│ │ ├─ register_repo.rs # track a new repo
│ │ ├─ update_repo.rs # update repo metadata
│ │ ├─ register_module.rs # register generated module
│ │ ├─ update_module.rs # update module metadata / version
│ │ ├─ link_module_to_repo.rs # relate module to repo
│ │ ├─ create_fork.rs # create Unit09 fork
│ │ ├─ update_fork_state.rs # change fork state
│ │ ├─ record_observation.rs # log code observation stats
│ │ ├─ record_metrics.rs # update aggregates
│ │ └─ set_metadata.rs # generic metadata updates
│ └─ utils/
│ ├─ seeds.rs # PDA seeds
│ ├─ validators.rs # common account validation helpers
│ └─ time.rs # timestamp helpers
├─ idl/
│ ├─ unit09_program.json
│ └─ types.d.ts
├─ scripts/
│ ├─ generate-idl.ts
│ ├─ deploy-localnet.ts
│ ├─ deploy-devnet.ts
│ └─ verify-on-explorer.ts
└─ tests/
├─ helpers/
│ ├─ provider.ts
│ ├─ accounts.ts
│ ├─ builders.ts # builders for test data
│ └─ assertions.ts
├─ unit09_init.spec.ts
├─ unit09_repos.spec.ts
├─ unit09_modules.spec.ts
├─ unit09_forks.spec.ts
└─ unit09_metrics.spec.ts
packages/
├─ shared-types/
│ ├─ package.json
│ └─ src/
│ ├─ index.ts
│ ├─ repo.ts # Repo type definitions
│ ├─ module.ts # Module types
│ ├─ fork.ts # Fork types
│ ├─ lifecycle.ts
│ ├─ metrics.ts
│ ├─ events.ts
│ ├─ pipeline.ts # pipeline-level DTOs
│ └─ errors.ts
│
├─ sdk/
│ ├─ package.json
│ ├─ tsconfig.json
│ ├─ src/
│ │ ├─ index.ts
│ │ ├─ client.ts # main Unit09 client
│ │ ├─ connection.ts # connection helpers
│ │ ├─ config.ts
│ │ ├─ accounts/
│ │ │ ├─ configAccount.ts
│ │ │ ├─ repoAccount.ts
│ │ │ ├─ moduleAccount.ts
│ │ │ └─ forkAccount.ts
│ │ ├─ instructions/
│ │ │ ├─ initialize.ts
│ │ │ ├─ registerRepo.ts
│ │ │ ├─ updateRepo.ts
│ │ │ ├─ registerModule.ts
│ │ │ ├─ updateModule.ts
│ │ │ ├─ linkModule.ts
│ │ │ ├─ createFork.ts
│ │ │ └─ updateFork.ts
│ │ ├─ queries/
│ │ │ ├─ getConfig.ts
│ │ │ ├─ getRepoById.ts
│ │ │ ├─ listRepos.ts
│ │ │ ├─ listModulesByRepo.ts
│ │ │ ├─ listForks.ts
│ │ │ └─ getGlobalStats.ts
│ │ └─ utils/
│ │ ├─ errors.ts
│ │ ├─ parsers.ts
│ │ └─ types.ts
│ └─ README.md
│
├─ core-engine/
│ ├─ package.json
│ ├─ tsconfig.json
│ ├─ src/
│ │ ├─ index.ts
│ │ ├─ config/
│ │ │ ├─ engineConfig.ts
│ │ │ ├─ schema.ts # runtime config validation schema
│ │ │ └─ defaults.ts
│ │ ├─ pipeline/
│ │ │ ├─ index.ts
│ │ │ ├─ types.ts
│ │ │ ├─ observeCode.ts
│ │ │ ├─ detectLanguage.ts
│ │ │ ├─ parseProject.ts
│ │ │ ├─ buildCodeGraph.ts
│ │ │ ├─ decomposeModules.ts
│ │ │ ├─ generateModuleArtifacts.ts
│ │ │ ├─ assembleBuildPlan.ts
│ │ │ ├─ validateModules.ts
│ │ │ ├─ syncOnChain.ts
│ │ │ └─ runFullPipeline.ts
│ │ ├─ analyzers/
│ │ │ ├─ rustAnalyzer.ts
│ │ │ ├─ anchorAnalyzer.ts
│ │ │ ├─ typescriptAnalyzer.ts
│ │ │ ├─ configAnalyzer.ts
│ │ │ └─ multiLanguageRouter.ts
│ │ ├─ generators/
│ │ │ ├─ moduleScaffold.ts
│ │ │ ├─ instructionTemplates.ts
│ │ │ ├─ deployScripts.ts
│ │ │ └─ frontendStubs.ts
│ │ ├─ graph/
│ │ │ ├─ codeGraph.ts
│ │ │ └─ moduleGraph.ts
│ │ ├─ ai/
│ │ │ ├─ llmClient.ts
│ │ │ ├─ promptBuilder.ts
│ │ │ └─ postProcessing.ts
│ │ ├─ adapters/
│ │ │ ├─ githubAdapter.ts
│ │ │ ├─ gitLocalAdapter.ts
│ │ │ └─ solanaAdapter.ts
│ │ ├─ logging/
│ │ │ ├─ logger.ts
│ │ │ └─ metrics.ts
│ │ └─ utils/
│ │ ├─ fsHelpers.ts
│ │ ├─ env.ts
│ │ ├─ validation.ts
│ │ └─ error.ts
│ └─ README.md
│
├─ cli-kit/
│ ├─ package.json
│ └─ src/
│ ├─ index.ts
│ ├─ ui/
│ │ ├─ banner.ts
│ │ ├─ prompts.ts
│ │ ├─ spinner.ts
│ │ └─ table.ts
│ ├─ logger.ts
│ └─ fs.ts
│
└─ testing-utils/
├─ package.json
└─ src/
├─ localnet.ts # spin local Solana validator
├─ wallet.ts
├─ unit09Fixture.ts
├─ snapshots.ts
└─ time.ts
services/
├─ api/
│ ├─ package.json
│ ├─ tsconfig.json
│ ├─ src/
│ │ ├─ index.ts
│ │ ├─ server.ts # http server
│ │ ├─ config.ts
│ │ ├─ routes/
│ │ │ ├─ health.ts
│ │ │ ├─ repos.ts
│ │ │ ├─ modules.ts
│ │ │ ├─ forks.ts
│ │ │ ├─ pipeline.ts
│ │ │ └─ stats.ts
│ │ ├─ controllers/
│ │ │ ├─ healthController.ts
│ │ │ ├─ reposController.ts
│ │ │ ├─ modulesController.ts
│ │ │ ├─ forksController.ts
│ │ │ ├─ pipelineController.ts
│ │ │ └─ statsController.ts
│ │ ├─ middleware/
│ │ │ ├─ errorHandler.ts
│ │ │ ├─ requestLogger.ts
│ │ │ ├─ authGuard.ts
│ │ │ └─ rateLimiter.ts
│ │ ├─ services/
│ │ │ ├─ unit09Service.ts
│ │ │ └─ pipelineService.ts
│ │ ├─ clients/
│ │ │ ├─ unit09SdkClient.ts
│ │ │ ├─ coreEngineClient.ts
│ │ │ └─ queueClient.ts
│ │ └─ utils/
│ │ ├─ httpErrors.ts
│ │ └─ validators.ts
│ ├─ Dockerfile
│ └─ README.md
│
├─ worker/
│ ├─ package.json
│ ├─ tsconfig.json
│ ├─ src/
│ │ ├─ index.ts
│ │ ├─ config.ts
│ │ ├─ jobs/
│ │ │ ├─ observeRepoJob.ts
│ │ │ ├─ analyzeRepoJob.ts
│ │ │ ├─ decomposeJob.ts
│ │ │ ├─ generateModulesJob.ts
│ │ │ ├─ validateModulesJob.ts
│ │ │ ├─ syncOnChainJob.ts
│ │ │ └─ forkEvolutionJob.ts
│ │ ├─ queue/
│ │ │ ├─ jobTypes.ts
│ │ │ ├─ jobQueue.ts
│ │ │ └─ jobHandlers.ts
│ │ └─ utils/
│ │ ├─ logger.ts
│ │ └─ metrics.ts
│ ├─ Dockerfile
│ └─ README.md
│
└─ scheduler/
├─ package.json
├─ src/
│ ├─ index.ts
│ ├─ config.ts
│ └─ schedules/
│ ├─ periodicObserve.ts # regularly observe repos
│ ├─ periodicSync.ts # sync metrics on-chain
│ └─ cleanup.ts # cleanup stale jobs
└─ README.md
cli/
├─ package.json
├─ tsconfig.json
└─ src/
├─ index.ts # CLI entry
├─ commands/
│ ├─ init.ts # unit09 init
│ ├─ config.ts # unit09 config set/get
│ ├─ link-repo.ts # unit09 link-repo <url>
│ ├─ run-pipeline.ts # unit09 run-pipeline <repo>
│ ├─ list-modules.ts # unit09 list-modules
│ ├─ deploy-module.ts # unit09 deploy-module <id>
│ ├─ create-fork.ts # unit09 fork create
│ └─ show-stats.ts # unit09 stats
└─ utils/
├─ logger.ts
├─ spinner.ts
└─ env.ts
apps/
├─ dashboard/
│ ├─ package.json
│ ├─ next.config.mjs
│ ├─ tsconfig.json
│ ├─ public/
│ │ ├─ favicon.ico
│ │ ├─ logo.svg
│ │ └─ og.png
│ ├─ src/
│ │ ├─ pages/
│ │ │ ├─ index.tsx # overview
│ │ │ ├─ repos.tsx # observed repos list
│ │ │ ├─ modules.tsx # module gallery
│ │ │ ├─ forks.tsx # fork explorer
│ │ │ └─ stats.tsx # metrics dashboard
│ │ ├─ components/
│ │ │ ├─ layout/
│ │ │ ├─ charts/
│ │ │ └─ tables/
│ │ ├─ lib/
│ │ │ ├─ apiClient.ts
│ │ │ └─ solanaClient.ts
│ │ └─ styles/
│ │ └─ globals.css
│ └─ README.md
│
└─ docs-site/
├─ package.json
├─ next.config.mjs
├─ tsconfig.json
├─ src/
│ ├─ pages/
│ │ ├─ index.tsx
│ │ ├─ getting-started.tsx
│ │ ├─ workflow.tsx
│ │ ├─ modules.tsx
│ │ ├─ forks.tsx
│ │ └─ api.tsx
│ └─ components/
│ ├─ markdownRenderer.tsx
│ └─ layout.tsx
└─ README.md
examples/
├─ simple-anchor-project/
│ ├─ README.md # A very small Anchor project used as input
│ └─ ...
├─ unit09-local-demo/
│ ├─ docker-compose.yml # localnet + api + worker
│ ├─ README.md
│ └─ scripts/
│ ├─ run_localnet.sh
│ ├─ seed_demo_data.ts
│ └─ demo_workflow.ts # runs observe → decompose → generate → sync
└─ module-gallery/
├─ README.md
└─ modules/
├─ token-vesting/
├─ basic-mint/
└─ access-control/
infra/
├─ docker/
│ ├─ Dockerfile.api
│ ├─ Dockerfile.worker
│ ├─ Dockerfile.scheduler
│ └─ Dockerfile.localnet
├─ k8s/
│ ├─ namespaces.yaml
│ ├─ deployments/
│ │ ├─ api-deployment.yaml
│ │ ├─ worker-deployment.yaml
│ │ └─ scheduler-deployment.yaml
│ ├─ services/
│ │ ├─ api-service.yaml
│ │ └─ dashboard-service.yaml
│ ├─ ingress/
│ │ └─ ingress.yaml
│ └─ configmaps/
│ ├─ engine-config.yaml
│ └─ worker-config.yaml
├─ terraform/
│ ├─ main.tf
│ ├─ variables.tf
│ ├─ outputs.tf
│ └─ README.md
└─ monitoring/
├─ prometheus.yml
├─ grafana-dashboards/
│ └─ unit09-overview.json
└─ README.md
docs/
├─ README.md
├─ getting-started.md
├─ installation.md
├─ configuration.md
├─ architecture.md
├─ workflow.md
├─ onchain-design.md
├─ engine-design.md
├─ modules-and-forks.md
├─ api-reference.md
├─ cli-usage.md
├─ deployment-guide.md
└─ faq.md
.github/
└─ workflows/
├─ ci.yml # lint + typecheck
├─ tests.yml # unit + integration tests
├─ lint.yml
├─ build-and-publish.yml # build packages, publish to registry
├─ deploy-preview.yml # deploy previews for PRs
└─ security-scan.yml # dependency / code scan