Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计提醒

search-skill-database搜索技能数据库

Agent Skill

用于辅助数据库表结构、查询语句、迁移脚本和数据维护任务。它适合让 Agent 分析 schema、编写 SQL、排查查询问题、整理索引或生成迁移建议。使用时需要明确数据库类型、连接环境和目标表,区分只读分析与写入变更;涉及删除、更新、迁移和批量导入时,应优先 dry-run、备份或事务保护,避免误操作。

总安装

77

周安装

12

GitHub Stars

2

下载量

97
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:search-skill-database(搜索技能数据库)
来源仓库:https://github.com/abdullahbeam/nexus-design-abdullah
仓库路径:skills/search-skill-database
安装命令:
npx skills add https://github.com/abdullahbeam/nexus-design-abdullah --skill search-skill-database
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/abdullahbeam/nexus-design-abdullah --skill search-skill-database

简介

用于辅助数据库表结构、查询语句、迁移脚本和数据维护任务。

  • 适合分析 schema、编写 SQL、排查查询问题或生成迁移建议。
  • 需要明确数据库类型、连接环境和目标表,区分只读分析与写入变更。
  • 涉及删除、更新或批量导入时,应优先 dry-run 或事务保护,避免误操作。
  • search-skill-database 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Query Notion Database

Search and filter the Beam Nexus Skills database to discover skills created by teammates.

Purpose

Browse the company skills library in Notion. Filter by team, integration, or skill name to find relevant skills. Returns skill metadata for display or import.

Use cases:

  • Discover skills created by teammates
  • Find skills for specific integrations (Beam AI, Linear, etc.)
  • Check if a skill already exists before creating
  • Browse skills by team (General, Solutions, Engineering, Sales)

Time Estimate: 1-2 minutes


Workflow

Step 1: Validate Configuration

ALWAYS run configuration check first:

python ../../notion-master/scripts/check_notion_config.py

If configuration missing:

Expected output if configured:

✅ ALL CHECKS PASSED
You're ready to use Notion skills

Step 2: Query Database

Use the query_db.py script with filters:

Basic query (all skills):

python ../../notion-master/scripts/query_db.py

Filter by team:

python ../../notion-master/scripts/query_db.py --team General
python ../../notion-master/scripts/query_db.py --team Solutions

Filter by integration:

python ../../notion-master/scripts/query_db.py --integration "Beam AI"
python ../../notion-master/scripts/query_db.py --integration "Linear"

Search by name:

python ../../notion-master/scripts/query_db.py --name notion
python ../../notion-master/scripts/query_db.py --name agent

Combined filters:

python ../../notion-master/scripts/query_db.py --team Solutions --integration "Beam AI"

Sort and limit:

python ../../notion-master/scripts/query_db.py --sort name --limit 10

Step 3: Display Results

Human-readable output:

The script automatically displays results in readable format:

[RESULTS] Found 5 skills

1. beam-list-agents
   Team: Solutions
   Description: List all agents in Beam AI workspace...
   Integrations: Beam AI
   Created: 2025-12-01
   URL: https://notion.so/...

2. query-notion-db
   Team: General
   Description: Query Notion databases with filters...
   Integrations: Notion
   Created: 2025-11-15
   URL: https://notion.so/...

JSON output (for programmatic use):

python ../../notion-master/scripts/query_db.py --json

Returns JSON array of skill objects with full metadata.


Step 4: User Selection (Optional)

After displaying results, ask user which skill to import (if applicable):

Which skill would you like to import? (1-5, or 'none')

If user selects a skill:

  1. Get the page ID from results
  2. Trigger import-skill-to-nexus skill with page ID

Available Filters

FilterFlagExampleDescription
Team--team--team GeneralGeneral, Solutions, Engineering, Sales
Integration--integration--integration "Beam AI"Tool the skill integrates with
Name--name--name notionPartial match on skill name
Owner--owner--owner user-idFilter by creator (user ID)
Sort--sort--sort namecreated (default) or name
Limit--limit--limit 10Max results to return

Error Handling

Common errors:

ErrorCauseSolution
401 UnauthorizedInvalid API keyCheck NOTION_API_KEY in .env
404 Not FoundDatabase ID incorrectVerify NOTION_SKILLS_DB_ID in .env
No results foundFilter too restrictiveTry broader filters
Network timeoutConnection issueCheck internet, retry

For detailed troubleshooting:


Integration with Other Skills

Typical workflow:

1. query-notion-db (find skills)
2. import-skill-to-nexus (download selected skill)

Example:

User: "Find Beam AI skills in Notion"

AI: [Runs query_db.py --integration "Beam AI"]
    [Displays 3 results]

    Which would you like to import?

User: "Number 2"

AI: [Triggers import-skill-to-nexus with page ID]
    [Downloads and installs skill]

Advanced Usage

Custom database query:

For queries beyond the script's filters, use the Notion API directly or see:

Database schema reference:


Notes

  • Pagination: Script automatically handles pagination (fetches all results)
  • Rate limits: Notion allows 3 requests/second (script handles this)
  • Database ID: Default is Beam Nexus Skills (2bc2cadf-bbbc-80be-af8a-d45dfc8dfa2e)
  • Team filter: Matches exact team name (case-sensitive)
  • Name filter: Partial match, case-insensitive

Version: 2.0 Created: 2025-11-04 Updated: 2025-12-10 Status: Production Ready

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

24.75%
按下载量换算24

Antigravity

22.26%
按下载量换算22

windsurf

17.75%
按下载量换算17

Codex

13.11%
按下载量换算13

OpenCode

7.59%
按下载量换算7

Gemini CLI

3.61%
按下载量换算4

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills