Skip to content
Open
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
7 changes: 7 additions & 0 deletions tardygrada/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# metagpt in Tardygrada

Your 89,734 lines, 1,176 files in 11 verified instructions.

[Tardygrada](https://github.com/fabio-rovai/tardygrada) is a formally verified agent programming language. 194KB binary. Zero dependencies. Pure C11.

Generated with: `tardy terraform /path/to/metagpt`
27 changes: 27 additions & 0 deletions tardygrada/metagpt.tardy
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
// Tardygrada terraform of: metagpt_test
// Original: 1176 files, 89734 lines, 90 dependencies
// Framework: LlamaIndex
// Generated by: tardy terraform
//
// This file replaces the entire framework with verified agents.
// Every output goes through 8-layer verification + BFT consensus.

agent metagpt_test @sovereign @semantics(
truth.min_confidence: 0.90,
truth.min_consensus_agents: 3,
) {
invariant(trust_min: @verified)
invariant(non_empty)

// Agents (2 found in original repo)
let swe_agent: Fact = receive("swe_agent") grounded_in(domain) @verified
let code_text: Fact = receive("code_text") grounded_in(domain) @verified

// Tools (1 found in original repo)
let query_engine: str = exec("sqlite3 knowledge.db 'SELECT * FROM facts LIMIT 10' 2>/dev/null || echo 'no db'")

// Orchestration (was: sequential)
coordinate {swe_agent, code_text} on("execute workflow") consensus(ProofWeight)

let _source: str = "metagpt_test" @sovereign
}
Loading