Skip to content

Commit f982e2b

Browse files
committed
feat: complete Hydra wiring — 68 crates, middleware chain, mathematical frameworks, TUI, genome, daemon
Full system commit — clean history, no legacy artifacts. Hydra: 68 crates, 82,000+ lines of Rust, 184 genome entries across 24 skills. Three concurrent loops (Active, Ambient, Dream). Seven constitutional laws. Self-writing genome. Always-on daemon. IDF-scored memory retrieval. Bayesian confidence. Uncertainty trees. Surprise detection. Recursive introspection. TUI cockpit. Federation daemon. Integration and action drop folders. Capabilities catalogue (23 documents). Skill registry across 24 domains. 68/68 crates pass all tests. Zero clippy warnings. V1 harness 47/47 (100%).
0 parents  commit f982e2b

1,126 files changed

Lines changed: 190548 additions & 0 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.
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Agentra CLI CI
2+
3+
on:
4+
push:
5+
paths:
6+
- "Cargo.toml"
7+
- "Cargo.lock"
8+
- "agentra-cli/**"
9+
- ".github/workflows/agentra-cli-ci.yml"
10+
pull_request:
11+
paths:
12+
- "Cargo.toml"
13+
- "Cargo.lock"
14+
- "agentra-cli/**"
15+
- ".github/workflows/agentra-cli-ci.yml"
16+
17+
jobs:
18+
test-agentra-cli:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- uses: actions/checkout@v4
22+
- uses: dtolnay/rust-toolchain@stable
23+
- name: Cargo check
24+
run: cargo check -p agentra-cli
25+
- name: Cargo test
26+
run: cargo test -p agentra-cli
27+
- name: Installer syntax guardrails
28+
run: |
29+
for file in \
30+
agentic-memory/scripts/install.sh \
31+
agentic-codebase/scripts/install.sh \
32+
agentic-vision/scripts/install.sh \
33+
agentic-identity/scripts/install.sh; do
34+
if [ -f "$file" ]; then
35+
bash -n "$file"
36+
else
37+
echo "Skipping missing file in this repo checkout: $file"
38+
fi
39+
done
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
name: Canonical Consistency
2+
3+
on:
4+
push:
5+
branches: [main]
6+
paths:
7+
- "scripts/check-canonical-consistency.sh"
8+
- "scripts/check-operational-depth-parity.sh"
9+
- "scripts/check-command-surface.sh"
10+
- "scripts/check-mcp-consolidation.sh"
11+
- "scripts/lib/**"
12+
- "README.md"
13+
- "docs/**"
14+
- "docs/mcp-consolidation-contract.json"
15+
- "agentic-memory/**"
16+
- "agentic-vision/**"
17+
- "agentic-codebase/**"
18+
- "agentic-identity/**"
19+
- "agentic-time/**"
20+
- "agentic-contract/**"
21+
- "agentic-comm/**"
22+
- "agentic-planning/**"
23+
- "agentic-cognition/**"
24+
- "agentic-reality/**"
25+
- "agentralabs-tech-web/**"
26+
- ".github/workflows/canonical-consistency.yml"
27+
pull_request:
28+
branches: [main]
29+
paths:
30+
- "scripts/check-canonical-consistency.sh"
31+
- "scripts/check-operational-depth-parity.sh"
32+
- "scripts/check-command-surface.sh"
33+
- "scripts/check-mcp-consolidation.sh"
34+
- "scripts/lib/**"
35+
- "README.md"
36+
- "docs/**"
37+
- "docs/mcp-consolidation-contract.json"
38+
- "agentic-memory/**"
39+
- "agentic-vision/**"
40+
- "agentic-codebase/**"
41+
- "agentic-identity/**"
42+
- "agentic-time/**"
43+
- "agentic-contract/**"
44+
- "agentic-comm/**"
45+
- "agentic-planning/**"
46+
- "agentic-cognition/**"
47+
- "agentic-reality/**"
48+
- "agentralabs-tech-web/**"
49+
- ".github/workflows/canonical-consistency.yml"
50+
51+
jobs:
52+
check-canonical-consistency:
53+
runs-on: ubuntu-latest
54+
steps:
55+
- uses: actions/checkout@v4
56+
57+
- name: Checkout sister repos (from registry)
58+
run: |
59+
for repo in $(jq -r '.sisters[].repo' docs/sisters-registry.json); do
60+
git clone --depth 1 "https://github.com/agentralabs/${repo}.git" "${repo}"
61+
done
62+
63+
- name: Checkout web repo
64+
run: git clone --depth 1 https://github.com/agentralabs/agentralab-tech-web.git agentralabs-tech-web
65+
continue-on-error: true
66+
67+
- name: Run cross-sister canonical consistency checks
68+
run: ./scripts/check-canonical-consistency.sh

.gitignore

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
.DS_Store
2+
.claude/
3+
export
4+
output.txt
5+
target/
6+
agentra-config.json
7+
8+
# Internal planning documents
9+
PYPI-BACKFILL-VISION-CODEBASE.md
10+
SISTER-VISION-20-YEAR.md
11+
12+
# Internal docs — local-only, read by Claude Code and guardrails
13+
CLAUDE.md
14+
goals/
15+
16+
# SDK crate — local-only, updated as needed, will publish to crates.io later
17+
agentic-sdk/
18+
19+
# Nested repos managed independently
20+
.github-org-profile/
21+
agentic-codebase/
22+
agentic-cognition/
23+
agentic-comm/
24+
agentic-contract/
25+
agentic-identity/
26+
agentic-memory/
27+
agentic-planning/
28+
agentic-vision/
29+
agentralabs-tech-web/
30+
31+
# Never commit node_modules
32+
**/node_modules/

0 commit comments

Comments
 (0)