用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/oimiragieo/agent-studio --skill init命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Agent frontmatter enhancements — disallowedTools, mcpServers scoping, fork_eligible field
Context management — pre-compact persistence, threshold alignment, microcompact/circuit breaker detection
Hook enhancements — updatedInput for bash safety prefixes, suppressOutput for verbose blocks, denial-based routing feedback
正在显示 SKILL.md
基于 SOC 职业分类
| name | init |
| description | Auto-evolution skill to initialize a new repository with AGENTS.md localized context. |
| source | builtin |
| trust_score | 100 |
| provenance_sha | f09da555064b0ec3 |
NOTE: This is an auto-evolution skill designed to run when Agent Studio is first deployed into a new repository (e.g., when AGENTS.md does not yet exist).
Use this skill when you first enter a new codebase, or when the user explicitly asks to "initialize the repository" or "generate AGENTS.md".
This skill executes a rigorous 3-stage "Deep Ecosystem Evolution" pipeline.
Analyze the repository root to understand the technology stack and architecture. Specifically, look for and read:
README.md.cursorrules or .cursor/rules/.github/copilot-instructions.mdpackage.json, requirements.txt, Cargo.toml, go.mod, etc.)tsconfig.json, next.config.js, vite.config.ts, etc.)Generate AGENTS.md
Create or update a centralized AGENTS.md file in the repository root containing explicit, localized instruction sets for future Agents working in this codebase.
Include: exact test/build CLI commands, architecture notes, and environment quirks. Do not hallucinate support links. Do not include generic fluff. Show the proposed content to the user for confirmation if AGENTS.md already existed but is stale.
Cross-reference the discovered tech stack and repository complexity against the current available global tools (using the .claude/CLAUDE.md matrix).
agent-creator or skill-creator to generate bespoke, hyper-localized expert components (e.g., tensor-grep-rust-worker).Identify ONLY the subset of pre-existing agents and skills that are mathematically applicable to this repository's stack (e.g., if it's a TS web app, target typescript, react, jest, frontend). Do not evaluate all 200+ unrelated framework assets.
For each applicable asset:
node .claude/tools/cli/skill-freshness-report.cjs --name [asset-name] (or manually inspect its YAML frontmatter / git logs) to check its lastUpdated or createdAt timestamp.agent-updater or skill-updater to refresh its instruction context against modern best practices.{
"salientSummary": "Initialized the repository by scanning package.json and README.md. Detected a Next.js frontend with a Go backend. Generated AGENTS.md with explicit pnpm and Go build commands, testing strategies, and a high-level component map.",
"whatWasImplemented": "Created AGENTS.md in the repository root. Extracted 4 core architecture rules from .cursorrules. Verified that the test commands provided in AGENTS.md actually execute cleanly.",
"verification": {
"commandsRun": [
{
"command": "cat package.json | grep 'test'",
"exitCode": 0,
"observation": "Found vitest testing configuration."
}
]
}
}