Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .trinity/seals/FileOperations.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"gen_hash_c": "sha256:b780caeff482514cb17868f6d1baaa5c445fd4ed78795f806b3194776a5805c0",
"gen_hash_rust": "sha256:e12ec2791bed77d5c9ed0ac157bb310cbcc81307d6efa0fcabb31905c884215c",
"gen_hash_verilog": "sha256:b057963183f51c448ac06954fe313a6a88f944a8d3d390460b3c2173b7c120bf",
"gen_hash_zig": "sha256:f9630aa344fd253c3dbd5c2e26f52076138408c73e7667b239ea0a94dfa67381",
"module": "FileOperations",
"ring": 12,
"sealed_at": "2026-04-09T09:09:48Z",
"spec_hash": "sha256:728883573f6c129d3a93ad10e4bc868c50a7e2e87aaf4b4889d8527fc816a9bf",
"spec_path": "specs/file/operations.t27"
}
11 changes: 11 additions & 0 deletions .trinity/seals/FileWatcher.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"gen_hash_c": "sha256:d3e7ca84b9e0943bc069739a28cba33e2807284da700461a489e1c2335ddf19f",
"gen_hash_rust": "sha256:1ddc188d6d7d6595468fab7c6f730cdf88efe6b46641bbd40a3954914fefb7c4",
"gen_hash_verilog": "sha256:6ad948bd1156f4d1b125f5b6a9234206642221eed116777dd8df0691bc9b8232",
"gen_hash_zig": "sha256:5745fbfef75c5c94b4db3b4b47cc620cbd592397ebb22239e19e51e86ac84c09",
"module": "FileWatcher",
"ring": 12,
"sealed_at": "2026-04-09T09:09:48Z",
"spec_hash": "sha256:d1a87c87ff24072492c3d539a72af402b46a4acda477954b2485311592d7ddc1",
"spec_path": "specs/file/watcher.t27"
}
2 changes: 1 addition & 1 deletion docs/NOW.md
Original file line number Diff line number Diff line change
Expand Up @@ -799,7 +799,7 @@ eW91IHdvcmsgaW4gVVRDLio=

# NOW — Rolling integration snapshot

**Last updated:** 2026-04-09 — TRI CLI + MCP server + FPGA CI workflow · PR #378
**Last updated:** 2026-04-09 — Phase 3 parse bug fix (Result< typo) · PR #392

**Document class:** Operational focus document

Expand Down
4 changes: 2 additions & 2 deletions specs/file/operations.t27
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,12 @@ module FileOperations {
// ════════════════════════════════════════════════════════════════════

// list lists contents of a directory
fn list(path: str) -> Result([FileNode], FileError> {
fn list(path: str) -> Result<[FileNode], FileError> {
// Implementation: List directory contents
}

// list_recursive lists directory contents recursively
fn list_recursive(path: str, maxDepth: u32) -> Result([FileNode], FileError> {
fn list_recursive(path: str, maxDepth: u32) -> Result<[FileNode], FileError> {
// Implementation: List directory recursively
}

Expand Down
2 changes: 1 addition & 1 deletion specs/file/watcher.t27
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ module FileWatcher {
}

// get_watched_paths returns paths being watched
fn get_watched_paths(watcherID: WatcherID) -> Result([str], FileError> {
fn get_watched_paths(watcherID: WatcherID) -> Result<[str], FileError> {
// Implementation: Get list of watched paths
}

Expand Down
Loading