Skip to content

Commit a8c3ded

Browse files
author
rootkiller6788
committed
updata
1 parent 8415a2e commit a8c3ded

7,167 files changed

Lines changed: 1596761 additions & 17210 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 72 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,86 @@
1-
# Rust
2-
/target
1+
# ----------------------------
2+
# Rust / Cargo
3+
# ----------------------------
4+
/target/
5+
**/target/
36
**/*.rs.bk
7+
*.pdb
8+
.cargo/
49

5-
# Frontend
6-
/dashboard-ui/node_modules
7-
/dashboard-ui/dist
8-
/dashboard-ui/.vite
10+
# ----------------------------
11+
# Frontend (Vite / Node)
12+
# ----------------------------
13+
**/node_modules/
14+
**/dist/
15+
**/.vite/
16+
**/.cache/
17+
**/.npm/
18+
**/.pnpm-store/
19+
npm-debug.log*
20+
yarn-debug.log*
21+
yarn-error.log*
22+
pnpm-debug.log*
923

10-
# Runtime artifacts and logs
11-
/deploy/runtime
24+
# ----------------------------
25+
# Generated code
26+
# ----------------------------
27+
src/module_bindings/generated/
28+
29+
# ----------------------------
30+
# Runtime artifacts / logs
31+
# ----------------------------
32+
/deploy/runtime/**
33+
!/deploy/runtime/.gitkeep
1234
*.log
35+
*.log.*
36+
*.tmp
37+
*.temp
38+
tmp_*.json
39+
route_decision.json
40+
validation_report.json
41+
Gemini_Generated_Image_*.png
42+
43+
# ----------------------------
44+
# Python local runtime
45+
# ----------------------------
46+
**/.venv/
47+
**/venv/
48+
**/__pycache__/
49+
**/.pytest_cache/
50+
**/.mypy_cache/
51+
**/.ruff_cache/
52+
53+
# ----------------------------
54+
# OntoLoop local state
55+
# ----------------------------
56+
**/.gitmemory/
57+
**/.autocog/
1358

59+
# ----------------------------
1460
# Local secrets / env
61+
# ----------------------------
1562
.env
1663
.env.*
64+
!.env.example
65+
*.pem
66+
*.key
67+
*.crt
68+
*.p12
1769

70+
# ----------------------------
71+
# Testing / coverage
72+
# ----------------------------
73+
coverage/
74+
*.lcov
75+
.nyc_output/
76+
77+
# ----------------------------
1878
# OS / editor noise
79+
# ----------------------------
1980
.DS_Store
2081
Thumbs.db
82+
Desktop.ini
83+
nul
2184
.idea/
2285
.vscode/
23-
86+
claude code/

ARCHITECTURE.md

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# AutoLoop Architecture
1+
# AutoLoop Architecture
22

33
This document is a concise map of the current system using neutral engineering terms.
44

@@ -8,7 +8,7 @@ This document is a concise map of the current system using neutral engineering t
88
2. `AutoLoopApp` assembles runtime subsystems (`src/lib.rs`).
99
3. Orchestration runs intent clarification -> strategy planning -> swarm execution (`src/orchestration/mod.rs`).
1010
4. Runtime guard and verifier enforce bounded execution (`src/runtime/mod.rs`).
11-
5. Knowledge and learning artifacts persist through the SpacetimeDB adapter.
11+
5. Knowledge and learning artifacts persist through the StateStore adapter.
1212

1313
## Core Modules
1414

@@ -33,8 +33,8 @@ This document is a concise map of the current system using neutral engineering t
3333

3434
## Data and Storage
3535

36-
- Primary runtime record layer: `autoloop-spacetimedb-adapter/`
37-
- SpacetimeDB module crate: `spacetimedb/`
36+
- Primary runtime record layer: `autoloop-state-adapter/`
37+
- StateStore module crate: `state_store/`
3838
- Local runtime artifacts: `deploy/runtime/`
3939

4040
## Frontend Control Surface
@@ -56,3 +56,17 @@ This document is a concise map of the current system using neutral engineering t
5656
- One-command startup scripts:
5757
- `deploy/scripts/start-autoloop.ps1`
5858
- `deploy/scripts/start-autoloop.sh`
59+
60+
## Signal Plane (Whitebox)
61+
62+
- Internal write path is `SignalFacade` -> signal pipeline (no bypass).
63+
- Pipeline behavior includes redact/filter/sample/rate-limit, dual sink (`evidence` primary + `query-plane explain` secondary), batch/retry/backoff/shutdown flush.
64+
- CLI whitebox surface:
65+
- `system signal status`
66+
- `system signal explain`
67+
- `system signal drain`
68+
69+
## Reference-Only Components
70+
71+
`rule/` 目录仅用于参考资料管理,不参与编译链接或运行时启动路径。
72+

0 commit comments

Comments
 (0)