fivocell 8.12.15 โ†’ 8.12.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.
@@ -1,11 +1,15 @@
1
1
  export declare const AGENTS_MD_FILENAME = ".cell/AGENTS.md";
2
2
  export declare const CURSORRULES_FILENAME = ".cell/.cursorrules";
3
+ export declare const ROOT_AGENTS_MD_FILENAME = "AGENTS.md";
3
4
  export declare const CELL_RULES_MARKER = "# fivo-cell:rules:v1";
5
+ export declare const FIVO_CELL_SECTION_MARKER = "<!-- fivo-cell:start -->";
4
6
  export declare const AGENTS_MD_TEMPLATE = "# fivo-cell:rules:v1\n# FIVO Cell \u2014 AI Memory Rules\n\nFIVO Cell is installed and configured for this project. Use its MCP tools\n(named `cell_*`) to maintain permanent memory across sessions.\n\n## The @cell Convention\n\nWhenever the user types `@cell` in their message (e.g. \"@cell what did I\njust edit?\" or \"@cell fix this bug\"), you MUST do the following BEFORE\nresponding:\n\n1. **Call `cell_get_context` FIRST** to load this project's full context.\n2. **Pass `project` as the current folder name** \u2014 derive it from\n `path.basename(process.cwd())` or the absolute path the IDE is open\n in. If unsure, call `cell_list_projects` and pick the matching one.\n3. **Also pass `tool`** set to YOUR ACTUAL IDE/TOOL NAME (the one you\n are running in right now). Cell formats the block differently for\n each tool. The valid values are:\n - If you are in **Antigravity** / **Gemini** IDE \u2192 pass `\"tool\": \"antigravity\"`\n - If you are in **Cursor** \u2192 pass `\"tool\": \"cursor\"`\n - If you are in **OpenCode** CLI \u2192 pass `\"tool\": \"opencode\"`\n - If you are in **Claude Code** CLI \u2192 pass `\"tool\": \"claude-code\"`\n - If you are in **Codex** CLI \u2192 pass `\"tool\": \"codex\"`\n - If you are in **Windsurf** / **Codeium** \u2192 pass `\"tool\": \"windsurf\"`\n - If you are in **GitHub Copilot** \u2192 pass `\"tool\": \"copilot\"`\n - If you are in **Aider** \u2192 pass `\"tool\": \"aider\"`\n - If you are in **Continue.dev** \u2192 pass `\"tool\": \"continue-dev\"`\n - If you are unsure / none of the above \u2192 omit `tool` and Cell\n returns the rich text block (works for every IDE).\n DO NOT pass `\"opencode\"` unless you are actually OpenCode. If you\n are Antigravity, the correct value is `\"antigravity\"` (not\n `\"opencode\"`, not `\"cursor\"`, not `\"antigravity-ide\"`).\n4. **Use the returned context** to inform your answer \u2014 it contains the\n last session, recent file edits (live events), blind spots, style\n hints, predictions, tried approaches, **session bridge (what just happened)**,\n and **continuity thread (what's been happening across sessions)**.\n\n## Supreme Context: Bridge + Continuity\n\nFivo Cell v7+ maintains **Supreme Context** \u2014 AI never starts a session blind:\n\n- **\uD83C\uDF09 Session Bridge**: Automatically captured at session end. Auto-injected\n at session start. Contains: summary, open questions, failed approaches,\n working approaches, last thought, file focus, vibe snapshot.\n- **\uD83E\uDDF5 Continuity Thread**: Tracks work across multiple sessions. Knows\n what you're building, open questions, pending actions, key learnings.\n- **\uD83D\uDD2E Context Predictions**: Predicts what you'll need \u2014 which files,\n which errors may recur, which decisions need revisiting.\n\n**The bridge is auto-loaded in every `@cell` block.** You don't need to\nask for it \u2014 just read the `\uD83C\uDF09 LAST SESSION BRIDGE` and `\uD83E\uDDF5 CONTINUITY\nTHREAD` sections at the top of the context block and use them.\n\n## Common Cell Tools\n\n| Task | Tool |\n|------|------|\n| Load project context (`@cell`) | `cell_get_context` |\n| Open a work session | `cell_session_start` |\n| Close a session with key decisions | `cell_session_end` |\n| See recent sessions | `cell_session_recent` |\n| See recent file saves | `cell_watch_events` |\n| Start the file watcher | `cell_watch_start` |\n| Stop the file watcher | `cell_watch_stop` |\n| Detect code risks (try/catch, null checks, validation) | `cell_blindspots` |\n| Scan the project | `cell_scan` |\n| Log an error you hit | `cell_log_error` |\n| Log how you fixed it | `cell_log_fix` |\n| Log a key decision | `cell_log_decision` |\n| List all registered projects | `cell_list_projects` |\n\nThere are 67 cell tools in total. Run `cell --help` to see all of them.\n\n## Session Discipline\n\n- **At the start of a non-trivial task** (multi-file work, refactor,\n feature, debugging session): call `cell_session_start` to open a\n session.\n- **At the end** (or before a long break): call `cell_session_end` with\n `keyDecisions` summarising what you decided and `filesTouched`\n listing the files you changed.\n- If the user switches tools (e.g. Cursor \u2192 Antigravity) within a\n project, the bridge context is auto-loaded \u2014 read it from the @cell\n block to understand what was just done.\n\n## Supreme Context: Never Start Blind\n\nFivo v7 includes **Supreme Context** that auto-injects into every\n`@cell` block:\n\n- **\uD83C\uDF09 Bridge**: Last session's summary, decisions, open questions,\n file focus, failed approaches (don't retry), working approaches\n- **\uD83E\uDDF5 Continuity Thread**: Cross-session work tracking \u2014 what's being\n built, pending actions, key learnings across sessions\n- **\uD83D\uDD2E Predictions**: What files you'll need, which errors may recur,\n which decisions need revisiting\n\nRead these sections at the top of the context block and you'll\nimmediately know what was happening and what to do next.\n\n## Watcher Awareness\n\n- If the watcher is active, the @cell block includes the most recent\n file edits. Trust those for \"what did I just edit\" questions.\n- If the user reports a file change you don't know about, call\n `cell_watch_events` directly.\n\n## Anti-Patterns to Avoid\n\n- Do NOT guess a project name. If unsure, call `cell_list_projects`.\n- Do NOT skip `cell_get_context` when @cell is in the prompt \u2014 the\n whole point of the convention is automatic context.\n- Do NOT call `cell_get_context` for every message. Only when @cell\n appears, or when context is genuinely needed.\n- Do NOT modify or remove this file. To regenerate it, run\n `cell scan` again (it is idempotent \u2014 existing files are kept).\n\n## Regeneration\n\nThis file is auto-generated by `cell scan`. To remove it: `cell scan --no-rules`.\n";
5
7
  export declare const CURSORRULES_TEMPLATE = "# fivo-cell:rules:v1\n# FIVO Cell \u2014 Cursor Rules\n\nWhen the user types `@cell` in chat or Composer, you MUST call the\n`cell_get_context` MCP tool FIRST, with `project` set to the current\nfolder name and `tool` set to `cursor`. Then use the returned block\nto inform your response. See AGENTS.md for the full convention.\n";
8
+ export declare const ROOT_AGENTS_MD_TEMPLATE = "<!-- fivo-cell:start -->\n<!-- fivo-cell:end -->\n\n## \uD83D\uDD37 FIVO Cell \u2014 Permanent AI Memory\n\nThis project has **FIVO Cell** installed. It remembers everything across sessions via MCP tools (`cell_*` tools on port 9876).\n\n### `@cell` \u2014 Query Memory & Context\nWhen user types `@cell` with a question (e.g. `@cell what was I working on?`, `@cell show recent errors`, `@cell what\\'s my vibe?`):\n1. Call `cell_get_context` with `project` = this folder name and `tool` = your tool name (cursor, claude-code, opencode, etc.)\n2. Use the returned block \u2014 it has session bridge, continuity thread, recent edits, vibe, predictions\n3. Answer the question from that context\n\n### `@cellscan` \u2014 Scan & Update .cell/ Data\nWhen user types `@cellscan` (no question, just scanning):\n1. Call `cell_deep_scan` to analyze the current project\n2. Call `cell_discover` to detect AI tools on this machine and import their sessions\n3. All data is saved to `~/.fivo/cell/` \u2014 project profile, vibe, decisions, patterns\n4. Tell the user what was scanned and what was found\n\n### Quick Reference\n| Trigger | Action |\n|---------|--------|\n| `@cell [question]` | Query context, memory, vibe, errors, decisions |\n| `@cellscan` | Scan code + discover AI tools + update .cell/ |\n| Full contract | See `.cell/AGENTS.md` for all 67 MCP tools |\n\n### Tool Name Mapping\n- Cursor \u2192 `cursor` \u00B7 Claude Code \u2192 `claude-code` \u00B7 OpenCode \u2192 `opencode`\n- Codex \u2192 `codex` \u00B7 Windsurf \u2192 `windsurf` \u00B7 Copilot \u2192 `copilot`\n- Aider \u2192 `aider` \u00B7 Continue.dev \u2192 `continue-dev`\n- Antigravity/Gemini \u2192 `antigravity`\n\n---\n\n";
6
9
  export interface WriteRulesResult {
7
10
  agentsMd: 'written' | 'exists' | 'skipped';
8
11
  cursorRules: 'written' | 'exists' | 'skipped';
12
+ rootAgentsMd: 'written' | 'exists' | 'skipped';
9
13
  reason?: string;
10
14
  }
11
15
  export declare function isCellRulesFile(content: string): boolean;
@@ -15,6 +19,16 @@ export declare function writeAgentsMd(projectPath: string, opts?: {
15
19
  export declare function writeCursorRules(projectPath: string, opts?: {
16
20
  overwrite?: boolean;
17
21
  }): 'written' | 'exists' | 'skipped';
22
+ /**
23
+ * Write fivocell rules into the root AGENTS.md file that AI editors actually read.
24
+ * - If file doesn't exist: create fresh
25
+ * - If file exists but has no fivocell section: append at end
26
+ * - If file exists with stale fivocell section: replace the fivocell section
27
+ * Returns 'written' if content was modified, 'exists' if up-to-date, 'skipped' on error.
28
+ */
29
+ export declare function writeRootAgentsMd(projectPath: string, opts?: {
30
+ overwrite?: boolean;
31
+ }): 'written' | 'exists' | 'skipped';
18
32
  export declare function writeCellRules(projectPath: string, opts?: {
19
33
  overwrite?: boolean;
20
34
  cursor?: boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"agents-md.d.ts","sourceRoot":"","sources":["../../../../src/walls/01-context/context/agents-md.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,kBAAkB,oBAAoB,CAAC;AACpD,eAAO,MAAM,oBAAoB,uBAAuB,CAAC;AACzD,eAAO,MAAM,iBAAiB,yBAAyB,CAAC;AAExD,eAAO,MAAM,kBAAkB,0yLAyH9B,CAAC;AAEF,eAAO,MAAM,oBAAoB,8UAOhC,CAAC;AAEF,MAAM,WAAW,gBAAgB;IAC/B,QAAQ,EAAE,SAAS,GAAG,QAAQ,GAAG,SAAS,CAAC;IAC3C,WAAW,EAAE,SAAS,GAAG,QAAQ,GAAG,SAAS,CAAC;IAC9C,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,wBAAgB,eAAe,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAExD;AAED,wBAAgB,aAAa,CAAC,WAAW,EAAE,MAAM,EAAE,IAAI,GAAE;IAAE,SAAS,CAAC,EAAE,OAAO,CAAA;CAAO,GAAG,SAAS,GAAG,QAAQ,GAAG,SAAS,CAYvH;AAED,wBAAgB,gBAAgB,CAAC,WAAW,EAAE,MAAM,EAAE,IAAI,GAAE;IAAE,SAAS,CAAC,EAAE,OAAO,CAAA;CAAO,GAAG,SAAS,GAAG,QAAQ,GAAG,SAAS,CAY1H;AAED,wBAAgB,cAAc,CAAC,WAAW,EAAE,MAAM,EAAE,IAAI,GAAE;IAAE,SAAS,CAAC,EAAE,OAAO,CAAC;IAAC,MAAM,CAAC,EAAE,OAAO,CAAA;CAAO,GAAG,gBAAgB,CAI1H"}
1
+ {"version":3,"file":"agents-md.d.ts","sourceRoot":"","sources":["../../../../src/walls/01-context/context/agents-md.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,kBAAkB,oBAAoB,CAAC;AACpD,eAAO,MAAM,oBAAoB,uBAAuB,CAAC;AACzD,eAAO,MAAM,uBAAuB,cAAc,CAAC;AACnD,eAAO,MAAM,iBAAiB,yBAAyB,CAAC;AACxD,eAAO,MAAM,wBAAwB,6BAA6B,CAAC;AAEnE,eAAO,MAAM,kBAAkB,0yLAyH9B,CAAC;AAEF,eAAO,MAAM,oBAAoB,8UAOhC,CAAC;AAEF,eAAO,MAAM,uBAAuB,oqDAmCnC,CAAC;AAEF,MAAM,WAAW,gBAAgB;IAC/B,QAAQ,EAAE,SAAS,GAAG,QAAQ,GAAG,SAAS,CAAC;IAC3C,WAAW,EAAE,SAAS,GAAG,QAAQ,GAAG,SAAS,CAAC;IAC9C,YAAY,EAAE,SAAS,GAAG,QAAQ,GAAG,SAAS,CAAC;IAC/C,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,wBAAgB,eAAe,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAExD;AAED,wBAAgB,aAAa,CAAC,WAAW,EAAE,MAAM,EAAE,IAAI,GAAE;IAAE,SAAS,CAAC,EAAE,OAAO,CAAA;CAAO,GAAG,SAAS,GAAG,QAAQ,GAAG,SAAS,CAYvH;AAED,wBAAgB,gBAAgB,CAAC,WAAW,EAAE,MAAM,EAAE,IAAI,GAAE;IAAE,SAAS,CAAC,EAAE,OAAO,CAAA;CAAO,GAAG,SAAS,GAAG,QAAQ,GAAG,SAAS,CAY1H;AAED;;;;;;GAMG;AACH,wBAAgB,iBAAiB,CAAC,WAAW,EAAE,MAAM,EAAE,IAAI,GAAE;IAAE,SAAS,CAAC,EAAE,OAAO,CAAA;CAAO,GAAG,SAAS,GAAG,QAAQ,GAAG,SAAS,CAkC3H;AAED,wBAAgB,cAAc,CAAC,WAAW,EAAE,MAAM,EAAE,IAAI,GAAE;IAAE,SAAS,CAAC,EAAE,OAAO,CAAC;IAAC,MAAM,CAAC,EAAE,OAAO,CAAA;CAAO,GAAG,gBAAgB,CAK1H"}
@@ -33,18 +33,21 @@ var __importStar = (this && this.__importStar) || (function () {
33
33
  };
34
34
  })();
35
35
  Object.defineProperty(exports, "__esModule", { value: true });
36
- exports.CURSORRULES_TEMPLATE = exports.AGENTS_MD_TEMPLATE = exports.CELL_RULES_MARKER = exports.CURSORRULES_FILENAME = exports.AGENTS_MD_FILENAME = void 0;
36
+ exports.ROOT_AGENTS_MD_TEMPLATE = exports.CURSORRULES_TEMPLATE = exports.AGENTS_MD_TEMPLATE = exports.FIVO_CELL_SECTION_MARKER = exports.CELL_RULES_MARKER = exports.ROOT_AGENTS_MD_FILENAME = exports.CURSORRULES_FILENAME = exports.AGENTS_MD_FILENAME = void 0;
37
37
  exports.isCellRulesFile = isCellRulesFile;
38
38
  exports.writeAgentsMd = writeAgentsMd;
39
39
  exports.writeCursorRules = writeCursorRules;
40
+ exports.writeRootAgentsMd = writeRootAgentsMd;
40
41
  exports.writeCellRules = writeCellRules;
41
42
  const fs = __importStar(require("fs"));
42
43
  const path = __importStar(require("path"));
43
- // All AI rules files live inside the .cell/ directory to keep project root clean
44
- // A symlink or note in project root tells AI where to find them
44
+ // .cell/ copies are fivo-cell's canonical reference backups.
45
+ // Root-level AGENTS.md is the live file AI editors actually read.
45
46
  exports.AGENTS_MD_FILENAME = '.cell/AGENTS.md';
46
47
  exports.CURSORRULES_FILENAME = '.cell/.cursorrules';
48
+ exports.ROOT_AGENTS_MD_FILENAME = 'AGENTS.md';
47
49
  exports.CELL_RULES_MARKER = '# fivo-cell:rules:v1';
50
+ exports.FIVO_CELL_SECTION_MARKER = '<!-- fivo-cell:start -->';
48
51
  exports.AGENTS_MD_TEMPLATE = `${exports.CELL_RULES_MARKER}
49
52
  # FIVO Cell โ€” AI Memory Rules
50
53
 
@@ -174,6 +177,42 @@ When the user types \`@cell\` in chat or Composer, you MUST call the
174
177
  \`cell_get_context\` MCP tool FIRST, with \`project\` set to the current
175
178
  folder name and \`tool\` set to \`cursor\`. Then use the returned block
176
179
  to inform your response. See AGENTS.md for the full convention.
180
+ `;
181
+ exports.ROOT_AGENTS_MD_TEMPLATE = `${exports.FIVO_CELL_SECTION_MARKER}
182
+ <!-- fivo-cell:end -->
183
+
184
+ ## ๐Ÿ”ท FIVO Cell โ€” Permanent AI Memory
185
+
186
+ This project has **FIVO Cell** installed. It remembers everything across sessions via MCP tools (\`cell_*\` tools on port 9876).
187
+
188
+ ### \`@cell\` โ€” Query Memory & Context
189
+ When user types \`@cell\` with a question (e.g. \`@cell what was I working on?\`, \`@cell show recent errors\`, \`@cell what\\'s my vibe?\`):
190
+ 1. Call \`cell_get_context\` with \`project\` = this folder name and \`tool\` = your tool name (cursor, claude-code, opencode, etc.)
191
+ 2. Use the returned block โ€” it has session bridge, continuity thread, recent edits, vibe, predictions
192
+ 3. Answer the question from that context
193
+
194
+ ### \`@cellscan\` โ€” Scan & Update .cell/ Data
195
+ When user types \`@cellscan\` (no question, just scanning):
196
+ 1. Call \`cell_deep_scan\` to analyze the current project
197
+ 2. Call \`cell_discover\` to detect AI tools on this machine and import their sessions
198
+ 3. All data is saved to \`~/.fivo/cell/\` โ€” project profile, vibe, decisions, patterns
199
+ 4. Tell the user what was scanned and what was found
200
+
201
+ ### Quick Reference
202
+ | Trigger | Action |
203
+ |---------|--------|
204
+ | \`@cell [question]\` | Query context, memory, vibe, errors, decisions |
205
+ | \`@cellscan\` | Scan code + discover AI tools + update .cell/ |
206
+ | Full contract | See \`.cell/AGENTS.md\` for all 67 MCP tools |
207
+
208
+ ### Tool Name Mapping
209
+ - Cursor โ†’ \`cursor\` ยท Claude Code โ†’ \`claude-code\` ยท OpenCode โ†’ \`opencode\`
210
+ - Codex โ†’ \`codex\` ยท Windsurf โ†’ \`windsurf\` ยท Copilot โ†’ \`copilot\`
211
+ - Aider โ†’ \`aider\` ยท Continue.dev โ†’ \`continue-dev\`
212
+ - Antigravity/Gemini โ†’ \`antigravity\`
213
+
214
+ ---
215
+
177
216
  `;
178
217
  function isCellRulesFile(content) {
179
218
  return content.includes(exports.CELL_RULES_MARKER);
@@ -206,9 +245,54 @@ function writeCursorRules(projectPath, opts = {}) {
206
245
  return 'skipped';
207
246
  }
208
247
  }
248
+ /**
249
+ * Write fivocell rules into the root AGENTS.md file that AI editors actually read.
250
+ * - If file doesn't exist: create fresh
251
+ * - If file exists but has no fivocell section: append at end
252
+ * - If file exists with stale fivocell section: replace the fivocell section
253
+ * Returns 'written' if content was modified, 'exists' if up-to-date, 'skipped' on error.
254
+ */
255
+ function writeRootAgentsMd(projectPath, opts = {}) {
256
+ const filePath = path.join(projectPath, exports.ROOT_AGENTS_MD_FILENAME);
257
+ try {
258
+ if (fs.existsSync(filePath)) {
259
+ const existing = fs.readFileSync(filePath, 'utf8');
260
+ const startMarker = '<!-- fivo-cell:start -->';
261
+ const endMarker = '<!-- fivo-cell:end -->';
262
+ // Check if fivocell section already exists
263
+ const startIdx = existing.indexOf(startMarker);
264
+ const endIdx = existing.indexOf(endMarker);
265
+ if (startIdx !== -1 && endIdx !== -1 && endIdx > startIdx) {
266
+ // Replace existing fivocell section
267
+ if (!opts.overwrite)
268
+ return 'exists'; // already has our section, skip unless forced
269
+ const before = existing.substring(0, startIdx);
270
+ const after = existing.substring(endIdx + endMarker.length);
271
+ fs.writeFileSync(filePath, before + exports.ROOT_AGENTS_MD_TEMPLATE + after, 'utf8');
272
+ return 'written';
273
+ }
274
+ else {
275
+ // Append fivocell section at the end
276
+ const trimmed = existing.trimEnd();
277
+ const newContent = trimmed.endsWith('\n') ? trimmed + exports.ROOT_AGENTS_MD_TEMPLATE : trimmed + '\n\n' + exports.ROOT_AGENTS_MD_TEMPLATE;
278
+ fs.writeFileSync(filePath, newContent, 'utf8');
279
+ return 'written';
280
+ }
281
+ }
282
+ else {
283
+ // File doesn't exist โ€” create fresh
284
+ fs.writeFileSync(filePath, exports.ROOT_AGENTS_MD_TEMPLATE, 'utf8');
285
+ return 'written';
286
+ }
287
+ }
288
+ catch {
289
+ return 'skipped';
290
+ }
291
+ }
209
292
  function writeCellRules(projectPath, opts = {}) {
210
293
  const agentsMd = writeAgentsMd(projectPath, opts);
211
294
  const cursorRules = opts.cursor === false ? 'skipped' : writeCursorRules(projectPath, opts);
212
- return { agentsMd, cursorRules };
295
+ const rootAgentsMd = writeRootAgentsMd(projectPath, { overwrite: opts.overwrite });
296
+ return { agentsMd, cursorRules, rootAgentsMd };
213
297
  }
214
298
  //# sourceMappingURL=agents-md.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"agents-md.js","sourceRoot":"","sources":["../../../../src/walls/01-context/context/agents-md.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAmJA,0CAEC;AAED,sCAYC;AAED,4CAYC;AAED,wCAIC;AAvLD,uCAAyB;AACzB,2CAA6B;AAE7B,iFAAiF;AACjF,gEAAgE;AACnD,QAAA,kBAAkB,GAAG,iBAAiB,CAAC;AACvC,QAAA,oBAAoB,GAAG,oBAAoB,CAAC;AAC5C,QAAA,iBAAiB,GAAG,sBAAsB,CAAC;AAE3C,QAAA,kBAAkB,GAAG,GAAG,yBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyHrD,CAAC;AAEW,QAAA,oBAAoB,GAAG,GAAG,yBAAiB;;;;;;;CAOvD,CAAC;AAQF,SAAgB,eAAe,CAAC,OAAe;IAC7C,OAAO,OAAO,CAAC,QAAQ,CAAC,yBAAiB,CAAC,CAAC;AAC7C,CAAC;AAED,SAAgB,aAAa,CAAC,WAAmB,EAAE,OAAgC,EAAE;IACnF,MAAM,QAAQ,GAAG,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE,0BAAkB,CAAC,CAAC;IAC5D,IAAI,EAAE,CAAC,UAAU,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,CAAC;QAC/C,OAAO,QAAQ,CAAC;IAClB,CAAC;IACD,IAAI,CAAC;QACH,EAAE,CAAC,SAAS,CAAC,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;QAC1D,EAAE,CAAC,aAAa,CAAC,QAAQ,EAAE,0BAAkB,EAAE,MAAM,CAAC,CAAC;QACvD,OAAO,SAAS,CAAC;IACnB,CAAC;IAAC,MAAM,CAAC;QACP,OAAO,SAAS,CAAC;IACnB,CAAC;AACH,CAAC;AAED,SAAgB,gBAAgB,CAAC,WAAmB,EAAE,OAAgC,EAAE;IACtF,MAAM,QAAQ,GAAG,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE,4BAAoB,CAAC,CAAC;IAC9D,IAAI,EAAE,CAAC,UAAU,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,CAAC;QAC/C,OAAO,QAAQ,CAAC;IAClB,CAAC;IACD,IAAI,CAAC;QACH,EAAE,CAAC,SAAS,CAAC,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;QAC1D,EAAE,CAAC,aAAa,CAAC,QAAQ,EAAE,4BAAoB,EAAE,MAAM,CAAC,CAAC;QACzD,OAAO,SAAS,CAAC;IACnB,CAAC;IAAC,MAAM,CAAC;QACP,OAAO,SAAS,CAAC;IACnB,CAAC;AACH,CAAC;AAED,SAAgB,cAAc,CAAC,WAAmB,EAAE,OAAkD,EAAE;IACtG,MAAM,QAAQ,GAAG,aAAa,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC;IAClD,MAAM,WAAW,GAAG,IAAI,CAAC,MAAM,KAAK,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,gBAAgB,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC;IAC5F,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,CAAC;AACnC,CAAC"}
1
+ {"version":3,"file":"agents-md.js","sourceRoot":"","sources":["../../../../src/walls/01-context/context/agents-md.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fivocell",
3
- "version": "8.12.15",
3
+ "version": "8.12.16",
4
4
  "description": "FIVO Cell โ€” Permanent Developer Memory. Learns how you think, build, fail, and grow.",
5
5
  "main": "dist/walls/07-runtime/cli/cli.js",
6
6
  "types": "dist/walls/07-runtime/cli/cli.d.ts",