workspace-knowledge-sync

workspace-knowledge-sync is a skill for Claude Code, Codex from ulises-jeremias/agent-toolkit. It costs 64 tokens per session (1,747 once invoked), scanned A, original, MIT.

A knowledge-saving workflow that copies useful discoveries, decisions, processes, preferences, and follow-up tasks into a shared knowledge base and project instructions.

In plain words
What is it for?
It helps preserve discovered tools, working patterns, decisions, pending tasks, and user preferences for future work.
Why use it?
It prevents important information learned during one session from being lost before the next session.

Skill for Claude CodeCodex

Part of the agent-toolkit-complete plugin — 116 skills shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/ulises-jeremias/agent-toolkit/workspace-knowledge-sync
Any agent
npx skills add ulises-jeremias/agent-toolkit --skill workspace-knowledge-sync
Clone the repo
git clone --depth 1 https://github.com/ulises-jeremias/agent-toolkit

Made for: Claude Code, Codex.

Or install agent-toolkit-complete, the plugin that ships this one along with the rest of its 116 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for workspace-knowledge-sync

README.md
[![agentmods](https://agentmods.dev/badge/skills/ulises-jeremias/agent-toolkit/workspace-knowledge-sync.svg)](https://agentmods.dev/skills/ulises-jeremias/agent-toolkit/workspace-knowledge-sync)
Your own site
<a href="https://agentmods.dev/skills/ulises-jeremias/agent-toolkit/workspace-knowledge-sync"><img src="https://agentmods.dev/badge/skills/ulises-jeremias/agent-toolkit/workspace-knowledge-sync.svg" alt="Measured on agentmods" height="20"></a>
Per session 64 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,747 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00064 $0.01747
Opus 5 $0.00032 $0.00873
Sonnet 5 $0.00013 $0.00349
Haiku 4.5 $0.00006 $0.00175

Measured yesterday against content hash 69de4f8a32bf, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

workspace-knowledge-sync scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/agent-toolkit-complete/.github/skills/workspace-knowledge-sync/SKILL.md · 227 lines

How it starts

The opening of the file, as written. The whole thing — 227 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Workspace Knowledge Sync

Automatically syncs valuable discoveries, patterns, and decisions to the agentic-harness knowledge base and durable AGENTS.md learned facts.


Purpose

The orchestrator session accumulates knowledge through work. This skill ensures that valuable discoveries don't get lost and are available for future sessions — both in the workspace knowledge base (knowledge/) and as durable learned facts in AGENTS.md.

Inspired by cursor/plugins continual-learning (without hooks — no transcript mining or stop hook).


Trigger Points (Automatic)

The platform-engineer (archived tech-assistant — now inline references/WORKSTATION_OPS.md) will invoke this skill automatically when:

Situation What to Sync Target
Discovery of new skill/tool Skill name, purpose, usage pattern knowledge/skills/discovered.md
New process pattern Process steps, roles, tools knowledge/processes/general.md
Key decision made Decision, rationale, outcome knowledge/learnings/general.md
Pending follow-up Task description, context knowledge/todos/pending.md
User teaches something Information, preference Relevant knowledge file
Recurring user preference / correction Plain bullet, durable preference AGENTS.md## Learned User Preferences
Stable workspace fact Plain bullet, durable fact AGENTS.md## Learned Workspace Facts

How It Works

Knowledge base (agent-toolkit memory)

The skill uses the stable agent-toolkit memory API with --from-skill for origin tracking (harness alias: assistant-memory / bin/assistant-memory):

# Search before adding
agent-toolkit memory search "<query>"

# Add a learning (with origin tracking)
agent-toolkit memory add --type learning --from-skill knowledge-sync "Pattern: <description>"

# Add a skill (with tags)
agent-toolkit memory add --type skill --from-skill knowledge-sync --tags jira,workflow "New skill: <name>"

# Add a pending todo
agent-toolkit memory add --type todo --from-skill knowledge-sync "<description>"

Read the full file on GitHub · 227 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 227 lines · 64 tokens per session scan A 69de4f8a32bf

Subscribe to this mod's changes

workspace-knowledge-sync is a skill published in the GitHub repository ulises-jeremias/agent-toolkit (16 stars, last pushed today), licensed MIT. It adds 64 tokens to every session and 1,747 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-04.

Related

Other skills, from other repositories

chatcrystal-task-writeback

Write reusable ChatCrystal task memories after substantive work completes. Use when implementation or debugging produced a durable fix, pitfall, pattern, or decision worth preserving, and when the environment can either persist it through writetaskmemory or emit a structured memory candidate for later save.

ZengLiangYi/ChatCrystal · 62 tokens

chatcrystal-debug-recall

Recall ChatCrystal memories for debugging tasks involving failing tests, compiler errors, runtime exceptions, dependency issues, environment breakage, or performance regressions. Use when historical root causes, fixes, or pitfalls may accelerate diagnosis before proposing a fix.

ZengLiangYi/ChatCrystal · 54 tokens

chatcrystal-task-recall

Recall project-first and global-supplement ChatCrystal memories before substantive implementation, refactoring, migration, configuration, investigation, or optimization work. Use when the task is non-trivial, has repository or project context, and prior fixes, decisions, pitfalls, or reusable patterns may change the…

ZengLiangYi/ChatCrystal · 66 tokens

iblai-api-agent-memory

Manage an ibl.ai agent's memories via the platform API — list and filter agent (mentor) memories (by category, user, email, date), curate global (cross-agent) memories, curate shared agent knowledge injected into every user's chat, add/edit/delete memories, manage memory categories, and toggle capture/recall settings.…

iblai/api · 83 tokens

iblai-api-agent-history

Read an ibl.ai agent's conversation history and summaries via the platform API — list conversations with sentiment/topic/user/date filters, get general summaries and per-conversation memory, and export chat history as an async report. Use when reviewing or exporting how users have chatted with an agent.

iblai/api · 62 tokens

audit-history

Use when reviewing past agent sessions, auditing memory health, identifying repeated corrections or friction, cleaning up stale memories, proposing new skills and rules from usage patterns, or identifying mechanical improvements (testing, linting, static analysis, tooling) that could improve outcomes.

paultyng/skill-issue · 54 tokens