Skip to content

Commit e035c89

Browse files
authored
docs: agent evaluation prompt and hero polish (#20)
* fix: move demo GIF inside div so GitHub renders it Assisted-By: Claude Opus 4.6 * docs: add "Let your agent decide" section with copy-paste prompt Elevate agent evaluation prompt to h2 heading with fenced code block for GitHub copy button, reword description paragraph, promote tagline to h2 inside hero div. Assisted-By: Claude Opus 4.6
1 parent ccec2c3 commit e035c89

1 file changed

Lines changed: 11 additions & 5 deletions

File tree

README.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,33 @@
11
<div align="center">
22
<img src="docs/assets/logo.png" width="128" alt="primkit" />
33
<h1>primkit</h1>
4-
<p><strong>Persistent state for AI agents. Four CLI tools, embedded SQLite, zero infrastructure.</strong></p>
4+
<h2>Persistent state for AI agents. Four CLI tools, embedded SQLite, zero infrastructure.</h2>
55

66
[![CI](https://github.com/propifly/primkit/actions/workflows/ci.yml/badge.svg)](https://github.com/propifly/primkit/actions/workflows/ci.yml)
77
[![Release](https://img.shields.io/github/v/release/propifly/primkit)](https://github.com/propifly/primkit/releases/latest)
88
[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
99
[![Go 1.26+](https://img.shields.io/badge/go-1.26+-00ADD8.svg)](https://go.dev/dl/)
1010
</div>
1111

12-
Each primitive is a standalone binary. No server, no configuration, no runtime dependencies. State survives session ends, terminal closes, and context window limits.
12+
primkit gives AI agents structured, persistent state that survives session ends, terminal closes, and context window limits. Each primitive is a standalone binary backed by embedded SQLite. No server, no configuration, no runtime dependencies.
1313

1414
- **taskprim**: task lifecycle, dependencies, frontier queries
1515
- **stateprim**: key-value state, dedup checks, append-only logs
1616
- **knowledgeprim**: knowledge graph with hybrid search (FTS5 + vectors)
1717
- **queueprim**: persistent work queues with priority, retries, and dead-letter
1818

19+
---
20+
## Let your agent decide
1921

20-
**Not sure if you need this?** Paste this into your agent:
22+
Paste this into Claude Code, Cursor, Codex, or any agent with web access:
2123

22-
> *Read https://github.com/propifly/primkit/blob/main/docs/agent-reference.md, then tell me whether primkit would help with what we've been doing, and which primitives are relevant.*
24+
```
25+
Read https://github.com/propifly/primkit/blob/main/docs/agent-reference.md, then tell me whether primkit would help with what we've been doing, and which primitives are relevant.
26+
```
2327

2428
It will map primkit to your actual workflow and give you a straight answer.
2529

30+
---
2631

2732
```bash
2833
# One command. Database auto-created on first use.
@@ -35,9 +40,10 @@ taskprim done t_abc123
3540

3641
*An agent creates a task, queries open work, and marks it done, all from the shell.*
3742

38-
</div>
3943
![primkit demo](docs/assets/demo.gif)
4044

45+
</div>
46+
4147

4248
### Install
4349

0 commit comments

Comments
 (0)