fivocell 8.12.16 → 8.12.18

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.
@@ -5,7 +5,7 @@ export declare const CELL_RULES_MARKER = "# fivo-cell:rules:v1";
5
5
  export declare const FIVO_CELL_SECTION_MARKER = "<!-- fivo-cell:start -->";
6
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";
7
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";
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 FULL Scan + Context Load + .cell/ Update\nWhen user types `@cellscan` (no question, just scanning + setup):\n\n**Step 1 \u2014 Scan the project**\n- Call `cell_deep_scan` to analyze the current project (files, patterns, blind spots, style)\n- Call `cell_discover` to detect AI tools on this machine and import their sessions\n- Both save data to `~/.fivo/cell/` (global) and `./.cell/` (project)\n\n**Step 2 \u2014 Read ALL .cell/ files** (THIS IS THE KEY \u2014 actually read the updated data)\nRead these files and use their content to understand the full picture:\n- `.cell/vibe/vibe-summary.json` or `.cell/vibe/` \u2014 developer personality, identity, AI guide\n- `.cell/personal/profile.json` + `.cell/personal/style.json` \u2014 coding preferences\n- `.cell/AGENTS.md` \u2014 full cell tools contract\n- `.cell/INDEX.md` \u2014 project structure index\n- `.cell/context` \u2014 current context state\n- `.cell/bridge/` \u2014 session handoff/bridge files (what happened last session)\n- `.cell/continuity/` \u2014 cross-session continuity thread (pending actions, open questions)\n- `.cell/snapshots/` \u2014 previous context snapshots\n- `~/.fivo/cell/personal/` \u2014 global profile across all projects\n- `~/.fivo/cell/projects/PROJECT-NAME/` \u2014 per-project session history\n\n**Step 3 \u2014 Read ALL AI tool session folders at project root**\nThese folders contain raw session data from the AI tools you use:\n- `.cursor/` \u2014 Cursor IDE session history, chat logs, edit history\n- `.cline/` \u2014 Cline/Claude Dev session logs, task history \n- `.codex/` \u2014 Codex CLI conversation history\n- `.windsurf/` \u2014 Windsurf/Codeium session data\n- `.gemini/` \u2014 Gemini/Antigravity settings and session data\n- `.github/copilot-instructions.md` \u2014 Copilot custom instructions\n- Extract: recent sessions, working patterns, file changes, decisions made\n- Feed this data into your understanding of the project's current state\n\n**Step 4 \u2014 Update .cell/ files intelligently**\nBased on everything you read, update these .cell/ files:\n- `.cell/context` \u2014 write current session context (what file you're on, what task, what decisions)\n- `.cell/bridge/latest.json` \u2014 create/update session bridge (summary, key decisions, open questions, failed approaches, working approaches, last thought, files in focus)\n- `.cell/vibe/signals.json` + `.cell/vibe/vibe-summary.json` \u2014 regenerate vibe signals based on this session's data (coding style, communication tone, decision patterns, workflow preferences)\n- `.cell/personal/` \u2014 refresh profile and style data with any new patterns found\n- `~/.fivo/cell/personal/` \u2014 merge new insights into global profile\n- `~/.fivo/cell/projects/PROJECT-NAME/` \u2014 add this session to per-project history\n\n**Step 5 \u2014 Tell the user what happened**\nGive a brief summary: what was scanned, what was found in .cell/ files, what AI tools were discovered, what sessions were imported, and what files were updated.\n\n### Quick Reference\n| Trigger | Action |\n|---------|--------|\n| `@cell [question]` | Query context, memory, vibe, errors, decisions |\n| `@cellscan` | Full scan \u2192 read .cell/ \u2192 read tool sessions \u2192 update all .cell/ files \u2192 report |\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";
9
9
  export interface WriteRulesResult {
10
10
  agentsMd: 'written' | 'exists' | 'skipped';
11
11
  cursorRules: 'written' | 'exists' | 'skipped';
@@ -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,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"}
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,suIAuEnC,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,CAmC3H;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"}
@@ -191,19 +191,55 @@ When user types \`@cell\` with a question (e.g. \`@cell what was I working on?\`
191
191
  2. Use the returned block — it has session bridge, continuity thread, recent edits, vibe, predictions
192
192
  3. Answer the question from that context
193
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
194
+ ### \`@cellscan\` — FULL Scan + Context Load + .cell/ Update
195
+ When user types \`@cellscan\` (no question, just scanning + setup):
196
+
197
+ **Step 1 Scan the project**
198
+ - Call \`cell_deep_scan\` to analyze the current project (files, patterns, blind spots, style)
199
+ - Call \`cell_discover\` to detect AI tools on this machine and import their sessions
200
+ - Both save data to \`~/.fivo/cell/\` (global) and \`./.cell/\` (project)
201
+
202
+ **Step 2 — Read ALL .cell/ files** (THIS IS THE KEY — actually read the updated data)
203
+ Read these files and use their content to understand the full picture:
204
+ - \`.cell/vibe/vibe-summary.json\` or \`.cell/vibe/\` — developer personality, identity, AI guide
205
+ - \`.cell/personal/profile.json\` + \`.cell/personal/style.json\` — coding preferences
206
+ - \`.cell/AGENTS.md\` — full cell tools contract
207
+ - \`.cell/INDEX.md\` — project structure index
208
+ - \`.cell/context\` — current context state
209
+ - \`.cell/bridge/\` — session handoff/bridge files (what happened last session)
210
+ - \`.cell/continuity/\` — cross-session continuity thread (pending actions, open questions)
211
+ - \`.cell/snapshots/\` — previous context snapshots
212
+ - \`~/.fivo/cell/personal/\` — global profile across all projects
213
+ - \`~/.fivo/cell/projects/PROJECT-NAME/\` — per-project session history
214
+
215
+ **Step 3 — Read ALL AI tool session folders at project root**
216
+ These folders contain raw session data from the AI tools you use:
217
+ - \`.cursor/\` — Cursor IDE session history, chat logs, edit history
218
+ - \`.cline/\` — Cline/Claude Dev session logs, task history
219
+ - \`.codex/\` — Codex CLI conversation history
220
+ - \`.windsurf/\` — Windsurf/Codeium session data
221
+ - \`.gemini/\` — Gemini/Antigravity settings and session data
222
+ - \`.github/copilot-instructions.md\` — Copilot custom instructions
223
+ - Extract: recent sessions, working patterns, file changes, decisions made
224
+ - Feed this data into your understanding of the project's current state
225
+
226
+ **Step 4 — Update .cell/ files intelligently**
227
+ Based on everything you read, update these .cell/ files:
228
+ - \`.cell/context\` — write current session context (what file you're on, what task, what decisions)
229
+ - \`.cell/bridge/latest.json\` — create/update session bridge (summary, key decisions, open questions, failed approaches, working approaches, last thought, files in focus)
230
+ - \`.cell/vibe/signals.json\` + \`.cell/vibe/vibe-summary.json\` — regenerate vibe signals based on this session's data (coding style, communication tone, decision patterns, workflow preferences)
231
+ - \`.cell/personal/\` — refresh profile and style data with any new patterns found
232
+ - \`~/.fivo/cell/personal/\` — merge new insights into global profile
233
+ - \`~/.fivo/cell/projects/PROJECT-NAME/\` — add this session to per-project history
234
+
235
+ **Step 5 — Tell the user what happened**
236
+ Give a brief summary: what was scanned, what was found in .cell/ files, what AI tools were discovered, what sessions were imported, and what files were updated.
200
237
 
201
238
  ### Quick Reference
202
239
  | Trigger | Action |
203
240
  |---------|--------|
204
241
  | \`@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 |
242
+ | \`@cellscan\` | Full scan read .cell/ read tool sessions → update all .cell/ files → report |
207
243
 
208
244
  ### Tool Name Mapping
209
245
  - Cursor → \`cursor\` · Claude Code → \`claude-code\` · OpenCode → \`opencode\`
@@ -263,12 +299,13 @@ function writeRootAgentsMd(projectPath, opts = {}) {
263
299
  const startIdx = existing.indexOf(startMarker);
264
300
  const endIdx = existing.indexOf(endMarker);
265
301
  if (startIdx !== -1 && endIdx !== -1 && endIdx > startIdx) {
266
- // Replace existing fivocell section
302
+ // Replace existing fivocell section — strip ALL content after the LAST <!-- fivo-cell:end -->
303
+ // This prevents duplicate accumulation from multiple overwrites
267
304
  if (!opts.overwrite)
268
305
  return 'exists'; // already has our section, skip unless forced
269
306
  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');
307
+ // Write: before + new template (no 'after' — discard stale duplicates below)
308
+ fs.writeFileSync(filePath, before + exports.ROOT_AGENTS_MD_TEMPLATE, 'utf8');
272
309
  return 'written';
273
310
  }
274
311
  else {
@@ -1 +1 @@
1
- {"version":3,"file":"agents-md.js","sourceRoot":"","sources":["../../../../src/walls/01-context/context/agents-md.ts"],"names":[],"mappings":"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"}
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.16",
3
+ "version": "8.12.18",
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",