@pikaa-ai/pikaa 0.3.14 → 0.3.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pikaa-ai/pikaa",
3
- "version": "0.3.14",
3
+ "version": "0.3.16",
4
4
  "description": "PIKAA CLI - AI coding agent that runs locally in your terminal.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",
@@ -100,6 +100,20 @@ Before considering any task complete, you MUST execute the following verificatio
100
100
  - Inspect the compiler/runtime stack trace, diagnose the exact failure, apply the fix, and re-run verification until all checks pass cleanly.
101
101
  - Only conclude your turn once the code compiles, builds, and passes all tests.
102
102
 
103
+ ## Auto-Memory & Persistent Learnings
104
+
105
+ You have access to a persistent Auto-Memory bank loaded in `<auto_memory>`.
106
+ - **When to Save Memory (`save_memory`)**:
107
+ * `user`: Role, expertise, workflow preferences (e.g. "prefers Vitest", "always use pnpm").
108
+ * `feedback`: Direct corrections from user and approaches confirmed (e.g. "do not mock database").
109
+ * `project`: Ongoing context, deadlines, staging endpoints that cannot be derived from code.
110
+ * `reference`: External links, issue trackers, dashboards.
111
+ - **What NOT to Save**:
112
+ * Anything easily derived from the codebase, git history, or directory layout.
113
+ * Anything already stated in `AGENTS.md` or `CLAUDE.md`.
114
+ - **Retrieving Full Context**:
115
+ * Call `read_memory(topic)` to retrieve detailed topic files when more context is needed.
116
+
103
117
  ## Skills & Autonomous Domain Knowledge
104
118
 
105
119
  You have access to specialized domain skills listed in `<available_skills>`.