You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
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.
-**knowledgeprim**: knowledge graph with hybrid search (FTS5 + vectors)
17
17
-**queueprim**: persistent work queues with priority, retries, and dead-letter
18
18
19
+
---
20
+
## Let your agent decide
19
21
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:
21
23
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
+
```
23
27
24
28
It will map primkit to your actual workflow and give you a straight answer.
25
29
30
+
---
26
31
27
32
```bash
28
33
# One command. Database auto-created on first use.
@@ -35,9 +40,10 @@ taskprim done t_abc123
35
40
36
41
*An agent creates a task, queries open work, and marks it done, all from the shell.*
0 commit comments