workspace-knowledge-synclisted
Install: claude install-skill ulises-jeremias/agent-toolkit
# Workspace Knowledge Sync
Automatically syncs valuable discoveries, patterns, and decisions to the ai-workspace knowledge base.
---
## Purpose
The orchestrator session accumulates knowledge through work. This skill ensures that valuable discoveries don't get lost and are available for future sessions.
---
## Trigger Points (Automatic)
The tech-assistant will invoke this skill automatically when:
| Situation | What to Sync | Target File |
|-----------|--------------|-------------|
| 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 |
---
## How It Works
The skill uses the stable `assistant-memory` API with `--from-skill` for origin tracking:
```bash
# Search before adding
assistant-memory search "<query>"
# Add a learning (with origin tracking)
assistant-memory add --type learning --from-skill knowledge-sync "Pattern: <description>"
# Add a skill (with tags)
assistant-memory add --type skill --from-skill knowledge-sync --tags jira,workflow "New skill: <name>"
# Add a pending todo
assistant-memory add --type todo --from-skill knowledge-sync "<description>"
```
---
## Knowledge Str