Skip to content

Commit e1e96dc

Browse files
authored
Merge pull request #8 from gHashTag/cleanup/project-reorganization
Cleanup/project reorganization
2 parents 6bbe476 + 3a2eb33 commit e1e96dc

1,439 files changed

Lines changed: 314634 additions & 34751 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.

.github/workflows/nexus-build.yml

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
name: Trinity Nexus Build
2+
3+
on:
4+
push:
5+
branches: [ralph/*, main]
6+
paths:
7+
- 'trinity-nexus/**'
8+
- '.github/workflows/nexus-build.yml'
9+
pull_request:
10+
branches: [main]
11+
paths:
12+
- 'trinity-nexus/**'
13+
14+
jobs:
15+
build:
16+
runs-on: ubuntu-latest
17+
strategy:
18+
matrix:
19+
module: [core, lang, symb, network, canvas, tools]
20+
steps:
21+
- uses: actions/checkout@v4
22+
23+
- name: Setup Zig
24+
uses: goto-bus-stop/setup-zig@v2
25+
with:
26+
version: 0.15.0
27+
28+
- name: Build ${{ matrix.module }}
29+
working-directory: trinity-nexus
30+
run: zig build
31+
32+
- name: Test ${{ matrix.module }}
33+
working-directory: trinity-nexus
34+
run: zig build test-${{ matrix.module }}
35+
36+
build-all:
37+
runs-on: ubuntu-latest
38+
needs: build
39+
steps:
40+
- uses: actions/checkout@v4
41+
42+
- name: Setup Zig
43+
uses: goto-bus-stop/setup-zig@v2
44+
with:
45+
version: 0.15.0
46+
47+
- name: Build all modules
48+
working-directory: trinity-nexus
49+
run: zig build
50+
51+
- name: Run all tests
52+
working-directory: trinity-nexus
53+
run: zig build test

.gitignore

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,22 @@ generated/
4848

4949
# Compiled Zig binaries
5050
src/vibeec/flash_benchmark
51+
52+
# Cleanup artifacts
53+
*.tmp
54+
*.temp
55+
photon_*.ppm
56+
photon_*.wav
57+
58+
# Archive (don't track old code size)
59+
archive/frontend/website/node_modules/
60+
archive/frontend/docsite/node_modules/
61+
archive/frontend/docsite/.docusaurus/
62+
archive/frontend/docsite/build/
63+
64+
# Test models (large files)
65+
models/test/*.safetensors
66+
models/bitnet/microsoft-bitnet-2b/model.safetensors
5167
src/vibeec/gguf_chat
5268
src/vibeec/gguf_full_generate
5369
src/vibeec/gguf_to_tri
@@ -150,4 +166,4 @@ debug_test.zig
150166

151167
# Old build files
152168
build_zig13_old.zig
153-
tri
169+
/tri

.ralph/.call_count

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1

.ralph/.exit_signals

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"test_only_loops": [],
3+
"done_signals": [
4+
3,
5+
9,
6+
5,
7+
7,
8+
2
9+
],
10+
"completion_indicators": [
11+
3,
12+
9,
13+
5,
14+
7,
15+
2
16+
]
17+
}

.ralph/.loop_start_sha

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0b3cadc37a95799a95f192aaa6f143305c09cc73

.ralph/.response_analysis

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"loop_number": 130,
3+
"timestamp": "2026-02-18T00:31:41+00:00",
4+
"output_file": ".ralph/logs/claude_output_2026-02-18_07-31-28.log",
5+
"output_format": "json",
6+
"analysis": {
7+
"has_completion_signal": false,
8+
"is_test_only": false,
9+
"is_stuck": false,
10+
"has_progress": true,
11+
"files_modified": 9,
12+
"confidence_score": 70,
13+
"exit_signal": false,
14+
"work_summary": "CIRCUIT BREAKER: OPEN — Loop 130+.\n\nAll write operations blocked. No tool calls attempted.\n\n```bash\n# UNBLOCK — run in terminal:\necho '{\"permissions\":{\"allow\":[\"Bash(mv:*)\",\"Bash(touch:*)\",\"Bash(zig:*)\",\"Bash(git:*)\",\"Write\",\"Edit\"]}}' > /Users/playra/trinity/.claude/settings.local.json\n```\n\n---RALPH_STATUS---\nSTATUS: BLOCKED\nBRANCH: ralph/math-framework\nTASKS_COMPLETED_THIS_LOOP: 0\nFILES_MODIFIED: 0\nBUILD_STATUS: NOT_RUN\nTESTS_STATUS: NOT_RUN\nFORMAT_CHECK: NOT_RUN\nHISTORY_CONSULTED: true\nPATTERNS_FOUND: 1\nTECH_TREE_NODE: DEV-003\nTECH_TREE_UPDATED: false\nWORK_TYPE: IMPLEMENTATION\nEXIT_SIGNAL: false\nRECOMMENDATION: Human must add Write/Edit/Bash to .claude/settings.local.json\n---END_RALPH_STATUS---",
15+
"output_length": 1622,
16+
"has_permission_denials": false,
17+
"permission_denial_count": 0,
18+
"denied_commands": []
19+
}
20+
}

.ralph/AGENT.md

Lines changed: 0 additions & 84 deletions
This file was deleted.

0 commit comments

Comments
 (0)