Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

discover-agentic发现 Agent

Agent Skill

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

总安装

480

周安装

20

GitHub Stars

101

下载量

160
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/rand/cc-polymath --skill discover-agentic

简介

用于 AI 自主工作流的技能发现与编排管理。

  • 适合开发多步骤任务分解、工具调用、适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 上下文管理和失败恢复策略。discover-agentic 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 可自动激活于 Agent 开发场景, 提供工作流规划、记忆管理与并行执行支持。

SKILL.md

Agentic Workflow Skills Discovery

Provides automatic access to skills for building autonomous AI agents, managing tool use, and orchestrating multi-step workflows.

When This Skill Activates

This skill auto-activates when you're working with:

  • AI agent development and autonomous workflows
  • Task decomposition for LLM agents
  • Function calling and tool use patterns
  • Context window management and summarization
  • Working memory, scratchpads, and state tracking
  • Long-term memory and persistence patterns
  • Multi-step reasoning and planning
  • Failure recovery and re-planning strategies
  • Parallel vs sequential execution decisions

Available Skills

Quick Reference

The Agentic category contains 3 specialized skills:

  1. agentic-task-decomposition - Breaking complex goals into agent-executable steps, dependency graphs, re-planning
  2. agentic-tool-use - Function calling patterns, parallel tool use, error handling, tool selection heuristics
  3. agentic-memory - Context window management, working memory, long-term persistence, summarization

Load Full Category Details

For complete descriptions and workflows:

Read../agentic/INDEX.md

This loads the full Agentic category index with:

  • Detailed skill descriptions
  • Usage triggers for each skill
  • Common workflow combinations
  • Cross-references to related skills

Load Specific Skills

Load individual skills as needed:

Task planning and decomposition

Read../agentic/agentic-task-decomposition.md

Tool calling and execution

Read../agentic/agentic-tool-use.md

Context and memory management

Read../agentic/agentic-memory.md

Common Workflows

Building an Agent from Scratch

Sequence: Decomposition -> Tool Use -> Memory

Read../agentic/agentic-task-decomposition.md # Plan the agent's task handling Read../agentic/agentic-tool-use.md # Implement tool execution Read../agentic/agentic-memory.md # Add context management

Adding Tool Use to an Agent

Sequence: Tool Use -> Decomposition

Read../agentic/agentic-tool-use.md # Tool calling patterns Read../agentic/agentic-task-decomposition.md # Multi-tool task planning

Scaling Agent Sessions

Sequence: Memory -> Decomposition

Read../agentic/agentic-memory.md # Context management Read../agentic/agentic-task-decomposition.md # Context-bounded task sizing

Complete Agentic Stack

Full implementation:

1. Planning layer

Read../agentic/agentic-task-decomposition.md

2. Execution layer

Read../agentic/agentic-tool-use.md

3. Memory layer

Read../agentic/agentic-memory.md

Skill Selection Guide

Choose task decomposition when:

  • Complex goal needs breaking into steps
  • Tasks have dependencies or ordering constraints
  • Need to handle ambiguous requirements
  • Building a planning layer for an agent

Choose tool use when:

  • Implementing function calling in an LLM agent
  • Debugging tool call failures or inefficiency
  • Designing tool schemas and structured outputs
  • Optimizing multi-tool workflows

Choose memory when:

  • Agent sessions are hitting context limits
  • Need to persist state across turns or sessions
  • Building multi-turn conversational agents
  • Implementing retrieval-augmented generation

Integration with Other Skills

Agentic skills commonly combine with:

API skills (discover-api):

  • Agents that call REST/GraphQL APIs
  • Tool schemas for API endpoints
  • Authentication handling in agent workflows

Testing skills (discover-testing):

  • Testing agent behaviors and tool use
  • Autonomous test generation
  • Verifying agent task completion

Database skills (discover-database):

  • Database-backed agent memory
  • Agents that query and modify data
  • Persistent state management

Infrastructure skills (discover-infra, discover-cloud):

  • Deploying agent systems
  • Scaling agent workloads
  • Cost optimization for LLM calls

Usage Instructions

  1. Auto-activation: This skill loads automatically when Claude Code detects agentic workflow tasks
  2. Browse skills: Run Read../agentic/INDEX.md for full category overview
  3. Load specific skills: Use commands above to load individual skills
  4. Follow workflows: Use recommended sequences for common agentic patterns
  5. Combine skills: Load multiple skills for comprehensive coverage

Progressive Loading

This gateway skill (~200 lines, ~2K tokens) enables progressive loading:

  • Level 1: Gateway loads automatically (you're here now)
  • Level 2: Load category INDEX.md (~3K tokens) for full overview
  • Level 3: Load specific skills (~2-3K tokens each) as needed

Total context: 2K + 3K + skill(s) = 5-10K tokens vs 12K+ for entire category.

Quick Start Examples

"Build an autonomous coding agent": Read../agentic/agentic-task-decomposition.md

"How should my agent call tools?": Read../agentic/agentic-tool-use.md

"My agent is running out of context": Read../agentic/agentic-memory.md

Next Steps: Run Read../agentic/INDEX.md to see full category details, or load specific skills using the commands above.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

31.58%
按下载量换算51

Claude

31.65%
按下载量换算51

Cursor

18.45%
按下载量换算30

Gemini CLI

8.48%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills