From 6d70b506850f1a61136800d6589491a7950e01d2 Mon Sep 17 00:00:00 2001 From: Andres Vergara Date: Thu, 26 Mar 2026 11:00:34 -0700 Subject: [PATCH 1/2] docs: link curiosity-architecture guide from README Assisted-By: Claude Opus 4 --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 2cd8fe1..55ac965 100644 --- a/README.md +++ b/README.md @@ -708,6 +708,7 @@ Tests use **in-memory SQLite** — no disk I/O, no cleanup, fast and isolated. - [queueprim Guide](docs/queueprim.md) — visibility timeout, worker loop, priority and queue design, retry and dead-letter strategy - [Configuration Reference](docs/configuration.md) — full YAML spec, env var overrides, examples - [Architecture](docs/architecture.md) — layered design, store interfaces, data flow, replication +- [Building Curious Agents](docs/curiosity-architecture.md) — using knowledgeprim's knowledge graph and stateprim to build agents that investigate and learn autonomously across sessions - [Setup Guide](SETUP.md) — R2/S3 setup, replication testing, MCP configuration - [Contributing](CONTRIBUTING.md) — dev setup, code style, PR process - [Security Policy](SECURITY.md) — vulnerability reporting From b9c9a069ff5f9096d885818fe3b8f82510e78d18 Mon Sep 17 00:00:00 2001 From: Andres Vergara Date: Thu, 26 Mar 2026 11:04:06 -0700 Subject: [PATCH 2/2] docs: add go install instructions, remove stale proxy note go install works now that the module proxy has indexed the repo. Tested: taskprim and stateprim both install and run correctly. Assisted-By: Claude Opus 4 --- README.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 55ac965..6e9d18e 100644 --- a/README.md +++ b/README.md @@ -28,8 +28,6 @@ sudo mv taskprim stateprim knowledgeprim queueprim /usr/local/bin/ Verify: `taskprim --help` -> `go install` will be available after the Go module proxy indexes the repo. Check [pkg.go.dev/github.com/propifly/primkit](https://pkg.go.dev/github.com/propifly/primkit) — once it appears, install via `go install github.com/propifly/primkit/...@latest`. - --- ## What it does @@ -226,10 +224,19 @@ Or use `gh`: gh release download --latest --repo propifly/primkit --pattern '*darwin_arm64*' ``` -### From source +### go install Requires [Go 1.26+](https://go.dev/dl/): +```bash +go install github.com/propifly/primkit/taskprim/cmd/taskprim@latest +go install github.com/propifly/primkit/stateprim/cmd/stateprim@latest +go install github.com/propifly/primkit/knowledgeprim/cmd/knowledgeprim@latest +go install github.com/propifly/primkit/queueprim/cmd/queueprim@latest +``` + +### From source + ```bash git clone https://github.com/propifly/primkit.git cd primkit