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
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ agent/
├── .core/ Runtime workspace seed (agents.yaml + workspace.yaml)
├── docs/ RFCs, onboarding, audits
├── go.work + external/ Dev workspace mode (see CLAUDE.md)
└── Taskfile.yml Build orchestration
├── Taskfile.yaml Build orchestration (module-graph refresh, etc.)
└── module-graph.json Authoritative dappco.re/go/* dep snapshot
```

## Quickstart
Expand Down Expand Up @@ -110,6 +111,9 @@ cd go
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -o core-agent-linux ./cmd/core-agent/
```

`module-graph.json` at repo root is the authoritative `dappco.re/go/*` dep
snapshot — regenerate via `task module-graph:refresh` after dep bumps.

## Configuration

Runtime config lives at `.core/agents.yaml` (also extracted into
Expand Down
30 changes: 30 additions & 0 deletions Taskfile.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
version: "3"

tasks:
module-graph:refresh:
desc: Regenerate module-graph.json from go/go.mod (run after dappco.re/go/* dep bumps)
cmds:
- |
TODAY="$(date +%Y-%m-%d)" awk '
BEGIN {
print "{"
print " \"module\": \"dappco.re/go/agent\","
printf " \"generated_at\": \"%s\",\n", ENVIRON["TODAY"]
print " \"source\": \"go/go.mod\","
print " \"dependencies\": {"
}
/^[[:space:]]+dappco\.re\// {
mod=$1; ver=$2
entries[++n]=sprintf(" \"%s\": \"%s\"", mod, ver)
}
END {
for (i=1; i<=n; i++) {
sep=(i<n)?",":""
print entries[i] sep
}
print " }"
print "}"
}
' go/go.mod > module-graph.json
- jq . module-graph.json > /dev/null
- echo "module-graph.json refreshed"
15 changes: 15 additions & 0 deletions module-graph.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"module": "dappco.re/go/agent",
"generated_at": "2026-05-01",
"source": "go/go.mod",
"dependencies": {
"dappco.re/go": "v0.9.0",
"dappco.re/go/mcp": "v0.10.0",
"dappco.re/go/process": "v0.10.0",
"dappco.re/go/store": "v0.9.0",
"dappco.re/go/ws": "v0.5.0",
"dappco.re/go/io": "v0.9.0",
"dappco.re/go/log": "v0.9.0",
"dappco.re/go/rag": "v0.10.0"
}
}
Loading