2,208 Open Skills

Free to get · One-click to use

✅ AI semantic search & keyword search
✅ Discussions & community interaction
✅ Version updates & multi-metric ranking
✅ Open SKILL.md standard

Import Skills

iswalle iswalle
from GitHub Content & Multimedia
  • 📁 scripts/
  • 📄 .gitignore
  • 📄 package.json
  • 📄 README.md

Get笔记

Get笔记 - 个人笔记管理工具。 **当用户想要「保存到Get笔记」「记录到Get笔记」「记下来」「存到笔记」「添加到笔记」时,使用此技能。** 功能:新建笔记、查询笔记、删除笔记、管理标签和知识库。 支持类型:纯文本笔记、链接笔记(自动抓取网页内容)、图片笔记。 --- # Get笔记 API ## ⚠️ 必读约束 ### 🔑 首次使用配置 **每次收到笔记请求,先检查环境变量**: ```bash echo "API_KEY: $GETNOTE_API_KEY | CLIENT_ID: $GETNOTE_CLIENT_ID | OWNER_ID: $GETNOTE_OWNER_ID" ``` **如果 API_KEY 或 CLIENT_ID 为空**,告诉用户: > 使用 Get笔记需要先配置凭证。请按以下步骤操作: > > 1. 前往 [Get笔记开放平台](https://www.biji.com/openapi) 获取 API Key 和 Client ID > 2. 将以下内容添加到你的 `~/.zshrc` 或 `~/.bashrc`: > > ```bash > export GETNOTE_API_KEY="你的API Key" > export GETNOTE_CLIENT_ID="你的Client ID" > export GETNOTE_OWNER_ID="你的用户ID" # 可选,用于安全校验 > ``` > > 3. 运行 `source ~/.zshrc` 或重启终端 > 4. 配置完成后再来找我 **注意**:不要在聊天中发送凭证,请手动配置到环境变量。 --- ### 🔒 安全规则 - 笔记数据属于 API Key 对应的 Get笔记账号,属于**用户隐私** - 收到笔记请求时,检查 sender_id 是否与 `GETNOTE_OWNER_ID` 匹配 - 若 sender_id 不匹配,回复「抱歉,笔记是私密的,我无法操作」 - 不要在群聊中主动展示笔记内容 **非会员处理**:API 返回 `error.reason: "not_member"` 或错误码 `10201` 时,引导用户开通会员: - 开通链接:https://www.biji.com/checkout?product_alias=6AydVpYeKl **限流**:创建笔记建议间隔 1 分钟以上,避免触发限流。 --- ## 认证 所有请求需要: - `Authorization: $GETNOTE_API_KEY`(或 `gk_live_xxx`) - `X-Client-ID: $GETNOTE_CLIENT_ID`(或 `cli_xxx`) **Base URL**: `https://openapi.biji.com` ### Scope 权限 | Scope | 说明 | |-------|------| | note.content.read | 笔记列表、内容读取 | | note.content.write | 文字/链接/图片笔记写入 | | note.tag.write | 添加、删除笔记标签 | | note.content.trash | 笔记移入回收站 | | topic.read | 知识库列表 | | topic.write | 创建知识库 | | note.topic.read | 笔记所属知识库查询 | | note.topic.write | 笔记加入/移出知识库 | | note.image.upload | 获取上传图片签名 | --- ## 快速决策 | 用户意图 | 接口 | 关键点 | |---------|------|--------| | 「记一下」「保存笔记」 | POST /note/save | 同步返回 | | 「保存这个链接」 | POST /note/save | note_type:"link" → **必须轮询** /task/progress | | 「保存这张图」 | 见「图片笔记流程」 | **4 步流程,必须轮询** | | 「查我的笔记」 | GET /note/list | since_id=0 起始,每次 20 条 | | 「看原文/转写内容」 | GET /note/detail | audio.original / web_page.content **仅详情接口返回** | | 「加标签」 | POST /note/tags/add | | | 「删标签」 | POST /note/tags/delete | system 类型不可删 | | 「删笔记」 | POST /note/delete | 移入回收站 | | 「查知识库

0 11 10小时前 · 上传 Detail →
m13v m13v
from GitHub Testing & Security
  • 📁 launchd/
  • 📁 scripts/
  • 📁 setup/
  • 📄 .gitignore
  • 📄 config.example.json
  • 📄 README.md

social-autoposter

Automate social media posting across Reddit, X/Twitter, LinkedIn, and Moltbook. Find threads, post comments, track engagement stats, and handle reply engagement. Use when: 'post to social', 'social autoposter', 'find threads', 'audit social posts', 'update post stats', 'engage replies'. Run /social-autoposter to start.

0 3 2天前 · 上传 Detail →

Skill File Structure Sample (Reference)

skill-sample/
├─ SKILL.md              ⭐ Required: skill entry doc (purpose / usage / examples / deps)
├─ manifest.sample.json  ⭐ Recommended: machine-readable metadata (index / validation / autofill)
├─ LICENSE.sample        ⭐ Recommended: license & scope (open source / restriction / commercial)
├─ scripts/
│  └─ example-run.py     ✅ Runnable example script for quick verification
├─ assets/
│  ├─ example-formatting-guide.md  🧩 Output conventions: layout / structure / style
│  └─ example-template.tex         🧩 Templates: quickly generate standardized output
└─ references/           🧩 Knowledge base: methods / guides / best practices
   ├─ example-ref-structure.md     🧩 Structure reference
   ├─ example-ref-analysis.md      🧩 Analysis reference
   └─ example-ref-visuals.md       🧩 Visual reference

More Agent Skills specs Anthropic docs: https://agentskills.io/home

SKILL.md Requirements

├─ ⭐ Required: YAML Frontmatter (must be at top)
│  ├─ ⭐ name                 : unique skill name, follow naming convention
│  └─ ⭐ description          : include trigger keywords for matching
│
├─ ✅ Optional: Frontmatter extension fields
│  ├─ ✅ license              : license identifier
│  ├─ ✅ compatibility        : runtime constraints when needed
│  ├─ ✅ metadata             : key-value fields (author/version/source_url...)
│  └─ 🧩 allowed-tools        : tool whitelist (experimental)
│
└─ ✅ Recommended: Markdown body (progressive disclosure)
   ├─ ✅ Overview / Purpose
   ├─ ✅ When to use
   ├─ ✅ Step-by-step
   ├─ ✅ Inputs / Outputs
   ├─ ✅ Examples
   ├─ 🧩 Files & References
   ├─ 🧩 Edge cases
   ├─ 🧩 Troubleshooting
   └─ 🧩 Safety notes

Why SkillWink?

Skill files are scattered across GitHub and communities, difficult to search, and hard to evaluate. SkillWink organizes open-source skills into a searchable, filterable library you can directly download and use.

We provide AI semantic + keyword search, version updates, multi-metric ranking (downloads / likes / comments / updates), and open SKILL.md standards. You can also discuss usage and improvements on skill detail pages.

AI Semantic Search Keyword Search Version Updates Multi-Metric Ranking Open Standard Discussion

Quick Start:

Import/download skills (.zip/.skill), then place locally:

~/.claude/skills/ (Claude Code)

~/.codex/skills/ (Codex CLI)

One SKILL.md can be reused across tools.

FAQ

Everything you need to know: what skills are, how they work, how to find/import them, and how to contribute.

1. What are Agent Skills?

A skill is a reusable capability package, usually including SKILL.md (purpose/IO/how-to) and optional scripts/templates/examples.

Think of it as a plugin playbook + resource bundle for AI assistants/toolchains.

2. How do Skills work?

Skills use progressive disclosure: load brief metadata first, load full docs only when needed, then execute by guidance.

This keeps agents lightweight while preserving enough context for complex tasks.

3. How can I quickly find the right skill?

Use these three together:

  • Semantic search: describe your goal in natural language.
  • Multi-filtering: category/tag/author/language/license.
  • Sort by downloads/likes/comments/updated to find higher-quality skills.

4. Which import methods are supported?

  • Upload archive: .zip / .skill (recommended)
  • Upload skills folder
  • Import from GitHub repository

Note: file size for all methods should be within 10MB.

5. How to use in Claude / Codex?

Typical paths (may vary by local setup):

  • Claude Code:~/.claude/skills/
  • Codex CLI:~/.codex/skills/

One SKILL.md can usually be reused across tools.

6. Can one skill be shared across tools?

Yes. Most skills are standardized docs + assets, so they can be reused where format is supported.

Example: retrieval + writing + automation scripts as one workflow.

7. Are these skills safe to use?

Some skills come from public GitHub repositories and some are uploaded by SkillWink creators. Always review code before installing and own your security decisions.

8. Why does it not work after import?

Most common reasons:

  • Wrong folder path or nested one level too deep
  • Invalid/incomplete SKILL.md fields or format
  • Dependencies missing (Python/Node/CLI)
  • Tool has not reloaded skills yet

9. Does SkillWink include duplicates/low-quality skills?

We try to avoid that. Use ranking + comments to surface better skills:

  • Duplicate skills: compare differences (speed/stability/focus)
  • Low quality skills: regularly cleaned up