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

x07-agent-playbookx07 特工剧本

Agent Skill

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

总安装

194

周安装

8

GitHub Stars

公开资料未说明

下载量

63
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/x07lang/x07-website --skill x07-agent-playbook

简介

x07-agent-playbook 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于关键词搜索、任务场景匹配或来源线索梳理等研究检索场景。
  • 通过关键词、任务描述或来源仓库提供上下文,由 Agent 执行信息聚合与过滤。
  • 安装前需确认权限范围、维护状态,注意是否触发联网、命令执行或文件读写操作。
  • 建议结合原始 README 和仓库路径进一步核验具体用法和功能边界。

SKILL.md

x07-agent-playbook

This skill sets the baseline workflow and constraints for autonomous agents writing X07 programs. It assumes end-users only have the released toolchain binaries, not the toolchain source repo.

Tooling

See references/tooling.md.

Execution should go through x07 run (single front door). The standalone OS runner binary (x07-os-runner) remains available for expert usage, but is not part of the default agent loop.

If the task needs OS worlds or native deps (curl/openssl, etc), run x07 doctor early and follow its suggestions.

Canonical docs:

Single canonical agent loop (edit → run → test)

  1. Create or edit x07AST JSON (*.x07.json).
  2. Run in the correct capability world (canonical: x07 run): x07 run runs the canonical auto-repair loop by default (format → lint → quickfix, repeatable). Use: For CLI-style programs that expect argv_v1, pass process args after -- and x07 run will encode them into input bytes:

- default run (uses x07.json default_profile): x07 run - policy-enforced run: x07 policy init --template <cli|http-client|web-service|fs-tool|sqlite-app|postgres-client|worker|worker-parallel> (starting point; review and extend), then x07 run --profile sandbox (optionally add --allow-host... / --deny-host... to materialize derived policies) - --repair=off to disable auto-repair (debugging) - --repair=memory to stage repairs under .x07/repair/_staged/ without editing source files - --repair=write (default) to write repairs back to source files - --repair-max-iters N to bound iterations (default: 3) - x07 run -- tool --help

  1. If the project uses dependencies, update the lockfile: If the index can be consulted, --check also fails on yanked dependencies and active advisories unless explicitly allowed (--allow-yanked / --allow-advisories). If any dependency declares required helper packages via meta.requires_packages, x07 pkg lock may also update x07.json to add those transitive deps. If a transitive dependency must be forced to a safe version, use project.patch in x07.json (requires x07.project@0.3.0).

- x07 pkg lock --project x07.json - x07 pkg lock --project x07.json --check (CI gate)

  1. Run non-mutating whole-project validation before packaging:

- x07 check --project x07.json

  1. If you need a distributable native executable (end-user CLI binary, no toolchain required at runtime), bundle it:

- x07 bundle --profile os --out dist/app - x07 bundle --profile sandbox --out dist/app (policy enforced)

  1. For formal verification or certificate-oriented review flows, use the public trust surface directly: Read the certificate artifacts (summary.html, certificate.json, prove/coverage reports) instead of treating trust as a hidden internal process.

- x07 verify --prove --entry <sym> - x07 trust profile check --project x07.json --profile <profile.json> --entry <sym> - x07 trust capsule check --project x07.json --index arch/capsules/index.x07capsule.json when capsules are in scope - x07 pkg attest-closure --project x07.json --out arch/trust/dependency_closure.attest.json for networked certification profiles - x07 trust certify --project x07.json --profile <profile.json> --entry <sym> --out-dir target/cert

  1. If you need explicit diagnostics or tighter control than the default auto-repair loop:

- x07 fmt / x07 lint / x07 fix / x07 ast apply-patch

Keep each iteration small and checkable; if a repair loop does not converge quickly, stop and re-evaluate the approach.

Note: paths above assume a project scaffold (x07 init). In a publishable package repo (x07 init --package), format/lint the module files under modules/ and run tests via x07 test --manifest tests/tests.json.

Correctness + review artifacts (canonical)

  • Property-based testing:

- x07 test --pbt --manifest tests/tests.json (PBT only) - x07 test --all --manifest tests/tests.json (unit + PBT) - x07 fix --from-pbt <repro.json> --write (counterexample → deterministic regression test)

  • Semantic diff + trust report (for human review / CI artifacts):

- x07 review diff --from. --to. --html-out target/review/diff.html --json-out target/review/diff.json - x07 trust report --project x07.json --out target/trust/trust.json --html-out target/trust/trust.html - SBOM artifact (default CycloneDX): target/trust/trust.sbom.cdx.json - Dependency capability gate: add --fail-on deps-capability and provide x07.deps.capability-policy.json

  • Function contracts + certification artifacts:

- add requires / ensures / invariant clauses on a defn - add decreases[] when certifying pure self-recursive defn - run x07 verify --prove --entry <sym> for proof and coverage artifacts - run x07 trust profile check before x07 trust certify - for networked profiles, bind the reviewed dependency set with x07 pkg attest-closure

Recommended project layout (single canonical shape)

For app projects (x07 init):

  • x07.json: project manifest (x07.project@0.3.0; do not author new manifests on x07.project@0.2.0)
  • x07.lock.json: project lockfile (or lockfile configured in x07.json)
  • src/main.x07.json: entry
  • src/: module roots
  • .x07/deps/<name>/<version>/: fetched dependencies (when using x07 pkg lock)
  • tests/tests.json: test manifest (generated by x07 init in new projects)

For publishable package repos (x07 init --package):

  • x07-package.json: package manifest (publish contract for x07 pkg publish)
  • x07.json: minimal project manifest for local tests
  • modules/: module roots (publishable modules layout)
  • tests/tests.json: test manifest

For certification-oriented projects, start from the matching scaffold:

  • x07 init --template verified-core-pure
  • x07 init --template trusted-sandbox-program
  • x07 init --template trusted-network-service
  • x07 init --template certified-capsule
  • x07 init --template certified-network-capsule

Choosing packages (canonical)

Prefer the capability map (one default choice per capability):

Common non-web building blocks for agents:

  • text.coreext-text (trim/split/join/find/lines)
  • text.unicodeext-unicode-rs (normalize/casefold/segment)
  • math.bigintext-bigint-rs
  • math.decimalext-decimal-rs
  • data.cborext-cbor-rs
  • data.msgpackext-msgpack-rs
  • checksum.fastext-checksum-rs
  • diff.patchext-diff-rs
  • compress.zstdext-compress-rs
  • fs.globwalkext-path-glob-rs (run-os*)

Add deps with x07 pkg add NAME@VERSION --sync (choose NAME@VERSION from the capability map).

If you don’t know which package provides an import, use x07 pkg provides <module-id>.

Agent-first design rails

See references/design-rails.md.

For a built-in language/stdlib reference (toolchain-only), use x07 guide.

By-example docs (recommended)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.86%
按下载量换算23

Claude

30.77%
按下载量换算19

Cursor

18.56%
按下载量换算12

Gemini CLI

9.91%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

可写文件

该 Skill 可能写入或修改本地文件,使用前需要确认目标目录和修改范围。

安装前确认

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

来源信息

继续浏览同类 Skills