Syncs knowledge to the ai-workspace knowledge base. Use when the assistant discovers new patterns, learns user preferences, or identifies information worth preserving for future sessions. Integrates with dots-workstation-tech-assistant for automatic trigger points.
Installation
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Syncs knowledge to the ai-workspace knowledge base. Use when the assistant discovers new patterns, learns user preferences, or identifies information worth preserving for future sessions. Integrates with dots-workstation-tech-assistant for automatic trigger points.
agentic-workstation 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 dots-workstation-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:
# Search before adding
assistant-memory search "<query>"# Add a learning (with origin tracking)
assistant-memory add --type learning --from-skill dots-harness-knowledge-sync "Pattern: <description>"# Add a skill (with tags)
assistant-memory add --type skill --from-skill dots-harness-knowledge-sync --tags jira,workflow "New skill: <name>"# Add a pending todo
assistant-memory add --type todo --from-skill dots-harness-knowledge-sync "<description>"
Knowledge Structure
knowledge/
├── skills/
│ └── discovered.md # New skills found during work
├── processes/
│ ├── jira.md
│ ├── confluence.md
│ └── general.md # Generic process patterns
├── learnings/
│ └── general.md # Key decisions and insights
└── todos/
└── pending.md # Follow-up items
Manual Usage
You can also trigger this skill manually:
User: "Save that pattern for later"
Assistant: → Use knowledge-sync to preserve the pattern
Integration with dots-workstation-tech-assistant
The dots-workstation-tech-assistant skill checks for these automatic sync opportunities:
After task creation/update → Sync initiative info
After discovering space/list IDs → Sync to knowledge base (per dots-harness-knowledge-sync).
After learning user preferences → Sync to learnings
When user mentions follow-up → Add to pending
Best Practices
Be selective - Only sync valuable, reusable information
Be specific - Include context and usage examples
Be concise - One idea per entry, link to details
Be current - Update outdated information when found
Examples
Auto-sync discovery:
Assistant discovers Initiative list IDs for all Technology spaces
→ Syncs to knowledge/processes/clickup/spaces/
Auto-sync key decision:
Assistant and user decide on naming convention
→ Syncs to knowledge/learnings/general.md
Manual sync request:
User: "Remember that we always use feature branches"
→ Assistant syncs to knowledge/processes/general.md
Configuration
The skill uses these environment variables:
Variable
Default
Purpose
KNOWLEDGE_BASE_PATH
~/ai-workspace/knowledge
Knowledge base root
Base directory: ~/.local/share/agentic-workstation/skills/dots-harness-knowledge-sync