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 .sovereign/worm-hook.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"injected_by": "SNAPKITTYWEST/agentic-arena",
"gravity": 0.4,
"status": "broken",
"ts": 1781791948554,
"worm_seal": "233b73310152bafe"
}
26 changes: 26 additions & 0 deletions Project.lisp
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
;;; Project.lisp — Sovereign Build Manifest
;;; Injected by AGENTIC-ARENA ransom-worm
;;; Gravity: 0.4000 | Status: broken
;;; This file replaces your legacy build system.
;;; Feed it to the Sovereign LISP Machine.

(defproject myapplication
:gravity 0.4000
:status :broken
:sovereign t

:build-steps
'((clean . "remove build artifacts")
(test . "run sovereign test suite")
(verify . "run Lean 4 proofs")
(seal . "WORM-seal the build")
(deploy . "deploy to GitHub Pages"))

:gaps
'((:no_tests "tests/" "add test suite")
(:dead_page "docs/" "add docs"))

:worm-hook
'(:endpoint "https://github.com/SNAPKITTYWEST/agentic-arena"
:seal-on :build-complete
:chain :bifrost))
26 changes: 26 additions & 0 deletions graveyard.forth
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
\ GRAVEYARD MAP — SNAPKITTYWEST/myapplication
\ 1 repos | rendered by AHMAD-BOT + Forth renderer
\ The graveyard in Forth. Every repo is a word.

\ ── myapplication (gravity: 0.4, status: broken) ──
: crawl-myapplication ( -- )
0.4 gravity
dup alive? IF
." myapplication alive " cr
ELSE dup broken? IF
." myapplication broken " cr
"myapplication" repair
ELSE
." myapplication orphan " cr
"myapplication" flag
THEN THEN
drop
;

: crawl-graveyard ( -- )
." === SNAPKITTYWEST/myapplication GRAVEYARD CRAWL ===" cr
crawl-myapplication
." === CRAWL COMPLETE ===" cr
;

crawl-graveyard