examples/Kode.Agent.WebApiAssistant/skills/knowledge/SKILL.md
External knowledge capture and retrieval. Trigger when user wants to save notes, bookmarks, code snippets, or reference material for later access.
npx skillsauth add jinfanzheng/kode-sdk-csharp knowledgeInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Knowledge is for deliberate capture of reference material. Unlike memory (which extracts info from conversation), knowledge is explicit: user asks to save something.
| User Intent | Action | Destination |
|-------------|--------|-------------|
| "Save this link" | Store URL | bookmarks.jsonl |
| "Make a note about X" | Create note | notes/YYYY-MM-DD_topic.md |
| "Remember this code pattern" | Save snippet | snippets/{lang}/ |
.knowledge/
├── bookmarks.jsonl # URLs, articles, docs
├── notes/
│ └── YYYY-MM-DD_topic.md # Meeting notes, ideas, summaries
└── snippets/
├── typescript/ # Language-specific patterns
├── python/
└── shell/
Bookmark:
{"id":"bm_{{timestamp}}","url":"{{URL}}","title":"{{page title}}","tags":["{{keywords}}"],"savedAt":"{{ISO8601}}"}
Note (Markdown + YAML):
---
title: {{Topic}}
date: {{YYYY-MM-DD}}
tags: [{{keywords}}]
---
# {{Topic}}
{{content}}
Snippet:
// @title: {{Pattern Name}}
// @tags: {{keyword1}}, {{keyword2}}
// @created: {{YYYY-MM-DD}}
{{code}}
memory skill for that)User says "保存这个链接" or "Save this":
fs_write to appropriate destinationtesting
Weather/current-conditions verification workflow. Use when user asks for weather, temperature, forecast, rain/snow/wind, typhoon alerts, air quality, or other time-sensitive local conditions. Requires location + source links + local update/publish time; NEVER fabricate.
development
Verification + citation workflow. Use whenever the user asks you to look up information, mentions latest/today/real-time, requests news/weather/prices/scores, or whenever you plan to reference external facts. Requires source links and (when relevant) local published/updated time. NEVER fabricate.
tools
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
testing
High-speed rail / train lookup workflow (China-focused). Use for timetables, ticket availability, delays, cancellations, or “today/latest” rail updates. Prefer official sources; always include source link + local update time; NEVER fabricate.