Skip to main content
在 Manus 中运行任何 Skill
一键导入
GitHub 仓库

claude-code-patterns

claude-code-patterns 收录了来自 adamrdrew 的 20 个 skills,并提供仓库级职业覆盖和站内 skill 详情页。

已收集 skills
20
Stars
1
更新
2026-02-04
Forks
0
职业覆盖
4 个职业分类 · 已分类 100%
仓库浏览

这个仓库中的 skills

notes-add
软件开发工程师

Add a new note or update an existing one. Creates the notes database if it doesn't exist.

2026-02-04
notes-delete
档案文员

Delete a note from the database. Removes the note file and its index entry.

2026-02-04
notes-list
软件开发工程师

List all notes in the database with their topics and descriptions.

2026-02-04
notes-read
软件开发工程师

Read a specific note from the database. Use this to get fresh content after making changes.

2026-02-04
db-delete
软件开发工程师

Remove a document from the database. Deletes the document file and removes its entry from the index. Use this when the user wants to delete stored information.

2026-02-04
db-init
软件开发工程师

Initialize the database by creating the database/ directory and an empty index.md file. Safe to call if database already exists - will not overwrite existing data.

2026-02-04
db-list
软件开发工程师

List all documents currently stored in the database. Reads the index and presents a summary of all available documents with their topics and descriptions.

2026-02-04
db-read
数据库架构师

Find and read documents from the database matching a query. Searches the index for relevant entries, then reads and synthesizes the content. Use this when the user wants to retrieve stored information.

2026-02-04
db-upsert
软件开发工程师

Create a new document or update an existing one. If the topic already exists, updates the document. If it's new, creates the document and adds it to the index. Use this when the user wants to store or update information.

2026-02-04
db-verify
数据库管理员

Verify that the database exists and is properly initialized. Returns status indicating whether the database is ready for use. Use this before any operation that assumes the database exists.

2026-02-04
skills-list
数据库架构师

Get a list of currently available skills that you can invoke to perform database operations. Always check this list before attempting any operation.

2026-02-04
create-memory
软件开发工程师

Initialize the memory persistence system by creating memory.md if it doesn't exist. Safe to call multiple times - will not overwrite existing memory.

2026-02-04
get-local-weather
软件开发工程师

Get the 7-day weather forecast for the user's location. Reads zip code from memory, converts to coordinates, and fetches weather data. Requires memory to be initialized with a zip_code entry.

2026-02-04
list-skills
软件开发工程师

Lists all available skills with their names and descriptions. Use this skill first to discover what capabilities are available before invoking other skills.

2026-02-04
read-memory
软件开发工程师

Read all entries from the memory persistence system, or look up a specific key. Requires memory.md to exist.

2026-02-04
update-memory
软件开发工程师

Add or update a key-value pair in the memory persistence system. Performs upsert - updates existing keys or adds new ones. Requires memory.md to exist.

2026-02-04
weather-api
软件开发工程师

Reference documentation for the Open-Meteo free weather API. Use this skill to learn how to fetch weather forecasts using curl. The API requires latitude/longitude coordinates and returns JSON data. No API key required.

2026-02-04
zip-code-to-lat-and-long
软件开发工程师

Convert US zip codes to latitude/longitude coordinates using free APIs. No API key required. Covers Zippopotam.us (simplest) and OpenStreetMap Nominatim (alternative) with curl examples.

2026-02-04
skill-create
软件开发工程师

A description of how to create skills in the correct way for this project

2026-02-03
skills-list
软件开发工程师

Get a list of currently available skills that you can invoke to perform actions. Always check this list to see if something you want to do has an already well established pattern that can be reused.

2026-02-03