Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问clear审计通过

autonomous-agent-readiness自主 Agent 准备就绪

Agent Skill

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

总安装

930

周安装

38

GitHub Stars

4

下载量

298
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/petekp/agent-skills --skill autonomous-agent-readiness

简介

自主 Agent 就绪评估工具,用于分析代码库是否符合自主执行模式。

  • 适用于需要评估项目是否具备无人值守运行能力的技术场景。autonomous-agent-readiness 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 通过检查 CI/CD、依赖管理和自动化流程提供改进建议。
  • 安装前需确认权限范围,注意可能涉及文件读取和配置检查。
  • 建议结合原始 README 了解具体评估维度和输出格式。

SKILL.md

Autonomous Agent Readiness Assessment

Evaluate a codebase against proven patterns for autonomous agent execution and provide tailored recommendations.

Core Philosophy

Most agent failures are system design failures, not model failures. An agent that requires human approval at every step or depends on a developer's laptop being open is not autonomous. Autonomy is an infrastructure decision.

Assessment Workflow

Phase 1: Discovery

Gather information about the project's current state:

  1. Examine project structure

- Look for CI/CD configuration (.github/workflows/, Jenkinsfile, .gitlab-ci.yml) - Check for containerization (Dockerfile, docker-compose.yml, devcontainer.json) - Identify test infrastructure (tests/, __tests__/, test config files) - Find environment management (.env.example, requirements.txt, package.json)

  1. Review development workflow

- Read contributing guidelines, README, or developer docs - Check for sandbox/isolation patterns - Look for database setup scripts or fixtures - Identify how dependencies are managed

  1. Assess current automation

- Review existing CI/CD pipelines - Check for automated testing patterns - Look for environment provisioning scripts - Identify cleanup/teardown procedures

Phase 2: Evaluate Against Principles

Score the project (0-3) on each dimension. See references/assessment-criteria.md for detailed rubrics.

DimensionWhat to Look For
Sandbox IsolationEphemeral environments, container support, clean state per run
Database IndependenceLocal DB setup, migrations in code, no external DB dependencies
Environment ReproducibilityExplicit dependencies, no hidden state, deterministic setup
Session IndependenceRemote execution capability, no user session dependencies
Outcome-Oriented DesignClear acceptance criteria, minimal procedural coupling
Direct InterfacesCLI-first tools, OS primitives, minimal abstraction layers
Minimal Framework OverheadSimple interfaces, no heavy orchestration, composable CLI tools
Explicit StateWorkspace directories, file-based artifacts, inspectable logs
BenchmarkingMeasurable quality criteria, automated verification
Cost AwarenessResource limits, usage tracking, explicit provisioning
Verifiable OutputAutomated validation, deterministic results, clear exit codes
Infrastructure-Bounded PermissionsSystem-enforced constraints, least-privilege, no runtime prompts

Phase 3: Generate Recommendations

For each dimension scoring below 2, provide:

  1. Current state: What exists today
  2. Gap: What's missing for autonomous execution
  3. Recommendation: Specific, actionable improvement
  4. Priority: High/Medium/Low based on impact and effort

Tailor recommendations to the project's:

  • Technology stack
  • Team size and workflow
  • Existing infrastructure
  • Deployment targets

Output Format

# Autonomous Agent Readiness Assessment

## Project: [name]
## Assessment Date: [date]

## Executive Summary

[1-2 paragraphs summarizing overall readiness and top priorities]

**Overall Readiness Score: X/36** (sum of dimension scores)

## Dimension Scores

| Dimension | Score | Status |
|-----------|-------|--------|
| Sandbox Isolation | X/3 | [emoji] |
| Database Independence | X/3 | [emoji] |
| ... | ... | ... |

Status: 0-1 = needs work, 2 = adequate, 3 = strong

## Detailed Findings

### [Dimension Name] (X/3)

**Current State:**
[What exists]

**Gap:**
[What's missing]

**Recommendation:**
[Specific action]

**Priority:** [High/Medium/Low]

[Repeat for each dimension]

## Prioritized Action Plan

### Immediate (This Week)
1. [Highest impact, lowest effort items]

### Short-term (This Month)
1. [Important foundational changes]

### Medium-term (This Quarter)
1. [Larger infrastructure investments]

## Quick Wins

[2-3 changes that can be made today with minimal effort]

Key Principles Reference

Sandbox Everything

Every agent run executes in its own ephemeral, isolated, disposable environment. Clean environment, writable filesystem, command execution, scoped network access. Environment destroyed after verified output.

No External Databases

Agents create their own databases inside the sandbox. Install packages on demand, spin up DBs locally, run migrations, seed data explicitly, tear down at end. Reproducible runs without shared state.

Environment Garbage Is Real

Long-lived environments accumulate stray files, half-installed packages, cached state, orphaned processes. Fresh environments surface correctness; persistent environments obscure it.

Run Independently of User Sessions

Agent loop decoupled from browser tabs, terminal sessions, developer machines. Start task, close laptop, return to completed artifacts. Control via wall-clock limits, resource limits, automatic cleanup.

Define Outcomes, Not Procedures

Avoid step-by-step plans and tool-level micromanagement. Define desired outcome, acceptance criteria, constraints. Planning and execution belong to the agent.

Direct, Low-Level Interfaces

Direct access to command execution, persistent files, network requests. OS primitives over abstraction layers. CLI-first systems are easier to debug and more capable than they look.

Persist State Explicitly

Writable workspace directory for intermediate results, logs, partial outputs, planning artifacts. Files are inspectable, deterministic, and enable post-run analysis.

Benchmarks Early

Introduce benchmarks as early as possible. Representative and repeatable metrics for quality. Even crude benchmarks beat none.

Minimal Framework Overhead

Most real-world agent workflows reduce to running commands, reading/writing files, and making network calls. CLI-first systems are easier to reason about, debug, and more capable than they look. When an abstraction layer is more complex than the task, it becomes the bottleneck.

Plan for Cost

Provision token usage, allocate compute explicitly, enforce limits by system. Autonomy shifts where costs appear, doesn't remove them.

Verifiable Output

Output must be verifiable without human review. Automated validation, deterministic results, clear success/failure exit codes. If quality cannot be measured, it cannot be trusted in autonomous operation.

Infrastructure-Bounded Permissions

Permissions are constrained by the environment, not by prompts or runtime decisions. Explicit capability grants, sandbox restrictions on dangerous operations, least-privilege by default. No runtime permission prompts required.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

30.3%
按下载量换算90

OpenCode

23.11%
按下载量换算69

Codex

17.84%
按下载量换算53

Gemini CLI

14.62%
按下载量换算44

windsurf

8.77%
按下载量换算26

Cursor

3.48%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills