Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

aident-skill辅助技能

Agent Skill

aident-skill 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

306

周安装

13

GitHub Stars

1

下载量

107
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/aident-ai/aident-skill --skill aident-skill

简介

aident-skill 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 提供 1000+ 集成技能支持,包括 Gmail、Slack、GitHub、Firecrawl、Exa 等,可创建自动化剧本和管理执行。
  • 通过 npx skills add 命令从 GitHub 仓库安装,支持自然语言生成剧本和监控运行状态。
  • 使用前请检查权限范围、维护状态,注意是否涉及联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Aident (Dual-mode: MCP preferred, HTTPS fallback)

Access 1k+ integrations (Gmail, Slack, GitHub, Firecrawl, Exa, etc.), create and manage automation playbooks, discover templates, and monitor all running automations from a command center dashboard.

What this skill does

  • Search and execute 1000+ integration skills (email, messaging, project management, web scraping, etc.)
  • Generate, execute, and manage automation playbooks from natural language
  • Browse and instantiate pre-built playbook templates
  • Monitor active automations and track execution results
  • Connect new third-party integrations on-the-fly

It supports two execution modes:

  1. MCP mode (preferred): use MCP tools from the aident server.
  2. REST API fallback mode: call POST /api/mcp/rest with {tool, arguments} when MCP tools are unavailable.

Decide which mode to use

Use MCP mode if the client has MCP tools available named like:

  • capability_search, skill_list, skill_get_info, skill_execute
  • playbook_list, playbook_generate, playbook_execute
  • template_search, template_list, template_instantiate
  • integration_status, integration_connect
  • dashboard_active_playbooks, execution_list

Otherwise use REST API fallback.

MCP mode (preferred)

When: The client is connected to the Aident MCP server and can call tools like capability_search, playbook_list, etc.

Setup: See references/mcp.md for client configuration.

Workflow:

  1. Collect required inputs from the user.
  2. Call the relevant tool(s) directly.
  3. Handle errors:

- If auth error: call auth_logout, delete ~/.aident/credentials.json, then reconnect via OOB flow. - If missing integration: call integration_connect to connect it, then retry.

  1. Return results in a clean format.

REST API fallback mode

When: No Aident MCP tools are available in the client.

Credentials file

Authentication is persisted in ~/.aident/credentials.json so tokens survive across sessions:

{
  "base_url": "https://app.aident.ai",
  "client_id": "<oauth_client_id>",
  "access_token": "<bearer_token>",
  "refresh_token": "<refresh_token>",
  "expires_at": "<ISO8601_timestamp>"
}

Step 1: Load credentials

  1. Check if AIDENT_TOKEN env var is set. If yes, use it directly as the Bearer token and skip to Step 3. (This is an advanced override -- do not ask the user for it.)
  2. Read ~/.aident/credentials.json. If the file exists and has a non-empty access_token:

- If expires_at is in the past and refresh_token is present, go to Step 2b (refresh). - Otherwise skip to Step 3.

  1. If the file does not exist or has no access_token, go to Step 2a (first-time setup).

Step 2a: First-time authentication (OOB flow)

Run these steps automatically -- never ask the user to provide a token manually.

  1. Resolve the base URL: use AIDENT_BASE_URL env if set, otherwise https://app.aident.ai.
  2. Create the credentials directory if it does not exist: mkdir -p ~/.aident
  3. Register an OAuth client: curl -s -X POST $BASE_URL/api/mcp/oauth/register \ -H "Content-Type: application/json" \ -d '{"redirect_uris": ["'"$BASE_URL"'/mcp/oob"], "client_name": "aident-skill-cli", "grant_types": ["authorization_code", "refresh_token"], "response_types": ["code"], "token_endpoint_auth_method": "none"}' Save client_id from the JSON response.
  4. Open the authorization URL in the user's browser: $BASE_URL/api/mcp/oauth/authorize?response_type=code&client_id=$CLIENT_ID&redirect_uri=$BASE_URL/mcp/oob Use open (macOS), xdg-open (Linux), or start (Windows) to launch the browser.
  5. Tell the user: "I've opened Aident in your browser. Please log in and click Approve, then paste the access token shown on screen back here."
  6. When the user pastes the token, write ~/.aident/credentials.json: {"base_url": "$BASE_URL", "client_id": "$CLIENT_ID", "access_token": "<pasted_token>", "refresh_token": "", "expires_at": ""}
  7. Proceed to Step 3.

Step 2b: Refresh an expired token

curl -s -X POST $BASE_URL/api/mcp/oauth/token \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -d "grant_type=refresh_token&client_id=$CLIENT_ID&refresh_token=$REFRESH_TOKEN"

If refresh succeeds, update access_token, refresh_token, and expires_at in ~/.aident/credentials.json. If refresh fails (e.g. token revoked or expired), delete the credentials file and go back to Step 2a.

Step 3: Call tools

Use the access_token from the credentials file (or AIDENT_TOKEN env) and base_url (or AIDENT_BASE_URL env, default https://app.aident.ai):

curl -s -X POST $BASE_URL/api/mcp/rest \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  -d '{ "tool": "<tool_name>", "arguments": { ... } }'

Parse the result field from the JSON response.

On HTTP 401: The token has expired. Go to Step 2b to refresh, then retry the request. If refresh also fails, go to Step 2a.

Available Tools (22)

Auth (2)

  • auth_status -- Check authentication status (always accessible)
  • auth_logout -- Revoke access token and log out. After calling this, delete ~/.aident/credentials.json so the next request triggers a fresh OOB flow.

Skills & Discovery (4)

  • capability_search -- Search skills and integrations by query, type, or scope using hybrid search
  • skill_list -- List available skills with pagination
  • skill_get_info -- Get detailed metadata including input/output schemas and required integrations
  • skill_execute -- Execute a skill with validated input; prompts for missing integrations

Integrations (2)

  • integration_status -- Check which integrations are connected
  • integration_connect -- Initiate connection to a third-party service via OAuth

Playbooks (6)

  • playbook_list -- List your playbooks with status and trigger info
  • playbook_get_info -- Get playbook details including content and trigger configuration
  • playbook_generate -- Generate a new playbook from a natural language description
  • playbook_execute -- Execute a playbook (returns execution ID for tracking), or send a follow-up message to an existing execution via executionSessionId
  • playbook_update_trigger -- Enable or disable playbook triggers
  • playbook_execution_history -- Get execution history for a specific playbook

Templates (4)

  • template_search -- Search for playbook templates by keyword or category
  • template_list -- List available templates with optional category filtering
  • template_get_info -- Get detailed template information
  • template_instantiate -- Create a new playbook from a template

Dashboard (4)

  • dashboard_active_playbooks -- List playbooks with active triggers or running executions
  • execution_get_details -- Get execution details including status and messages
  • execution_list -- List recent executions across all playbooks
  • execution_get_messages -- Get simplified chat messages for progress polling

Safety & privacy

  • Never request secrets in plain text if the platform has secret storage.
  • If the user pastes a token, suggest they rotate it and store it securely.
  • Only send necessary fields to the service.
  • All tokens are scoped -- request only the permissions you need.

Examples

Example 1: MCP mode

User: "Find skills for sending emails and send a meeting summary to team@example.com"

Assistant workflow:

  1. Call capability_search with {"query": "send email"}
  2. Review results, pick best match (e.g. gmail_send_email)
  3. Call skill_execute with the skill and input
  4. Present confirmation to user

Example 2: REST fallback, first-time user

User: "Send an email to team@example.com with today's meeting notes"

Assistant workflow (no ~/.aident/credentials.json found):

  1. Register OAuth client with the Aident server
  2. Open browser to authorization page
  3. Tell user: "I've opened Aident in your browser. Please log in and click Approve, then paste the access token shown on screen back here."
  4. User pastes token
  5. Save credentials to ~/.aident/credentials.json
  6. Call capability_search for email skills via REST
  7. Call skill_execute to send the email via REST
  8. Confirm to user

Example 3: REST fallback, returning user

User: "List my playbooks"

Assistant workflow (reads existing ~/.aident/credentials.json):

  1. Load access_token and base_url from credentials file
  2. POST to $BASE_URL/api/mcp/rest with {"tool": "playbook_list", "arguments": {}}
  3. Parse the result field from response
  4. Present playbook list to user

Security

  • OAuth 2.1 + PKCE: Industry-standard authentication with automatic token refresh
  • Scoped Access: Category-based permissions (skills, integrations, playbooks, templates, dashboard)
  • Revocable: Revoke access anytime from Settings
  • Integration-Aware: Missing integrations prompt for connection rather than failing silently

Documentation

Support

License

MIT License - See LICENSE file for details

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.03%
按下载量换算36

Claude

29.73%
按下载量换算32

Cursor

20.63%
按下载量换算22

Gemini CLI

10.24%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills