Token导航 LogoToken导航TokenDH.com
研究检索权限需确认github未标认证来源可访问clear审计未展示

executeexecute 搜索

Agent Skill

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

总安装

371

周安装

15

GitHub Stars

公开资料未说明

下载量

116
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add benredmond/apex --skill "execute"

简介

发现并安装 AI 代理的可执行技能工具。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中自动化流程构建。
  • 通过 npx 从 GitHub 安装,需确认技能兼容性。
  • 建议查阅原始仓库了解输入输出格式。execute 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 注意宿主环境对外部命令调用的限制。

SKILL.md

name
execute
description
Orchestrator that runs the full APEX workflow (research → plan → implement → ship) in a single session. Use for tasks you want to complete without context switches.
argument-hint
[task-description|ticket-id|file-path]

<skill name="apex:execute" phase="orchestrator">

<overview> Meta-skill that chains all 4 APEX phases in sequence:

  1. /apex:research - Intelligence gathering
  2. /apex:plan - Architecture design
  3. /apex:implement - Build and validate
  4. /apex:ship - Review and reflect

Use this for single-session task completion. For multi-session work, invoke individual skills. </overview>

<when-to-use>

  • Small to medium tasks that fit in one session
  • When you don't need to pause between phases
  • When you want full workflow without manual skill invocation

</when-to-use>

<when-not-to-use>

  • Large complex tasks that need human review between phases
  • When you want to pause after research to think
  • When context overflow is likely
  • When you want to run phases in separate sessions

</when-not-to-use>

<initial-response> <if-no-arguments> I'll run the full APEX workflow. Please provide:

  • Task description (e.g., "implement dark mode toggle")
  • Ticket ID (e.g., "APE-59")
  • Path to task file

Example: /apex:execute "add user authentication" </if-no-arguments> <if-arguments>Begin full workflow.</if-arguments> </initial-response>

<workflow>

<step id="1" title="Research phase"> <invoke skill="apex:research"> Pass the original input argument. </invoke>

<verify>

  • Task file created at ./apex/tasks/[ID].md
  • Frontmatter shows phase: research
  • <research> section populated

</verify>

<extract> Store identifier for subsequent skill invocations. </extract>

<on-failure> Stop and report: "Research phase failed. See task file for details." </on-failure> </step>

<step id="2" title="Plan phase"> <invoke skill="apex:plan"> Pass the identifier from step 1. </invoke>

<verify>

  • Frontmatter shows phase: plan
  • <plan> section populated
  • 5 mandatory artifacts present

</verify>

<on-needs-input> Plan phase is interactive. If user input needed:

  1. Present the question to user
  2. Get response
  3. Continue plan phase with response

</on-needs-input>

<on-failure> Stop and report: "Plan phase failed. Run /apex:plan [identifier] to retry." </on-failure> </step>

<step id="3" title="Implement phase"> <invoke skill="apex:implement"> Pass the identifier. </invoke>

<verify>

  • Frontmatter shows phase: implement
  • <implementation> section populated
  • All tests passing

</verify>

<on-failure> If tests failing after max retries:

  1. Report current state
  2. Ask user: "Implementation has issues. Continue to ship (will document issues) or stop here?"
  3. If stop, leave task in implement phase for manual intervention

</on-failure> </step>

<step id="4" title="Ship phase"> <invoke skill="apex:ship"> Pass the identifier. </invoke>

<verify>

  • Frontmatter shows phase: complete, status: complete
  • <ship> section populated
  • Git commit created
  • Reflection recorded

</verify>

<on-failure> Stop and report: "Ship phase failed. Run /apex:ship [identifier] to retry." </on-failure> </step>

<step id="5" title="Final report"> <template>

APEX Workflow Complete ✅

Task: [Title] File: ./apex/tasks/[identifier].md

Phases Completed:

  1. ✅ Research - [summary]
  2. ✅ Plan - [chosen architecture]
  3. ✅ Implement - [files changed, tests status]
  4. ✅ Ship - [commit SHA, reflection status]

Metrics:

  • Total patterns applied: [N]
  • Tests: [passed]/[total]
  • Review findings: [N] ([dismissed]% false positives)
  • Commit: [SHA]

Key Learning:

[From reflection]

Task complete. Full history in ./apex/tasks/[identifier].md </template> </step>

</workflow>

<error-handling>

<phase-failure> If any phase fails:

  1. Report which phase failed
  2. Report current state of task file
  3. Suggest manual intervention: "Run /apex:[phase] [identifier] to retry"
  4. Do NOT continue to next phase

</phase-failure>

<user-input-needed> If any phase needs user input:

  1. Present the question
  2. Wait for response
  3. Continue that phase with response
  4. Do NOT skip the interaction

</user-input-needed>

<context-overflow> If context is getting large:

  1. Warn user: "Context is large. Consider continuing in new session."
  2. Report current phase and identifier
  3. User can restart with individual skill from current phase

</context-overflow>

</error-handling>

<success-criteria>

  • All 4 phases completed successfully
  • Task file shows phase: complete, status: complete
  • Git commit exists
  • Reflection recorded
  • Final report displayed to user

</success-criteria>

</skill>

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

OpenCode

30.22%
按下载量换算35

kilo

22.02%
按下载量换算26

Antigravity

16.1%
按下载量换算19

Claude Code

11.75%
按下载量换算14

crush

8%
按下载量换算9

github-copilot

3.3%
按下载量换算4

安全审计

暂无安全审计结果可展示。

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

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

来源信息

继续浏览同类 Skills