Token导航 LogoToken导航TokenDH.com
前端设计external-servicegithub未标认证来源可访问许可证需确认审计提醒

coding-agent编码剂

Agent Skill

coding-agent 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

533

周安装

22

GitHub Stars

7

下载量

174
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/kesslerio/coding-agent-openclaw-skill --skill coding-agent

简介

coding-agent 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合围绕仓库状态、代码变更或协作事项进行整理和分析。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 确认具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Coding Agent Skill 💻

When to Use

Trigger this skill when the user wants:

  • Code review, PR review, or standards review
  • Implementation or refactoring
  • GitHub workflows, commits, and PRs

Execution Modes

Plan Mode (new)

Use plan-first workflow before risky implementation:

# Generate read-only plan artifact
scripts/code-plan --engine codex --repo /path/to/repo "Add feature X"

# Execute approved plan
scripts/code-implement --plan /path/to/repo/.ai/plans/<plan>.md

Plan artifacts are written to .ai/plans/*.md with machine-checkable status metadata. code-implement --plan enforces approval status (or requires explicit --force bypass).

Primary: Direct CLI (Session Resume + Permission Bypass)

Agent CLIs now support non-interactive execution with full autonomy and session persistence:

Reasoning default policy for Codex implementation:

  • Use -c model_reasoning_effort="high" for feature implementation and architectural refactors.
  • Use medium/low for simple fixes, docs-only updates, or when the user explicitly asks for fast/cheap execution.
# Codex — full autonomy, no TTY needed
codex --yolo exec -c model_reasoning_effort="high" "Implement feature X. No questions."
codex exec resume --last    # restore context from last session

# Claude Code — full autonomy, no TTY needed
claude -p --dangerously-skip-permissions "Implement feature X"
claude -p --resume <id>     # restore specific session
claude -p -c "Follow up"    # continue most recent session

Secondary: tmux Wrappers (Optional)

For long-running implementation tasks where TTY logging and session durability are needed:

# Implementation (3 min timeout, tmux)
"${CODING_AGENT_DIR:-./}/scripts/code-implement" "Implement feature X in /path/to/repo"

Multi-Phase Workflow (Session Resume)

Full issue → implement → PR → review → fix cycle using session resume:

  1. Implement: codex --yolo exec -c model_reasoning_effort="high" "Implement feature from issue #N"
  2. Create PR: gh pr create --title "feat:..." --body "..."
  3. Review: timeout 600s codex review --base <base> --title "Review PR #N"
  4. Fix issues: codex exec resume --last (context preserved)
  5. Re-review: timeout 600s codex review --base <base> --title "Re-review PR #N"
  6. Merge: gh pr merge
<base> = repo's default branch (main, master, or trunk). Detect with: git symbolic-ref refs/remotes/origin/HEAD 2>/dev/null | sed 's@^refs/remotes/origin/@@' Fallback if origin/HEAD is unset: git remote show origin | sed -n '/HEAD branch/s/.*: //p'

Non-Negotiable Rules (Summary)

  1. Use agent CLIs — Never write code directly. Use Codex CLI or Claude Code CLI (direct or via tmux wrappers). Do not switch to MCP orchestration unless explicitly required.
  2. Feature branch — Always use a feature branch for changes.
  3. PR before done — Always create a PR before completion.
  4. GitHub hygiene — Precise titles, structured bodies, explicit test commands, AI disclosure.
  5. No --max-turns — Let agent runs complete naturally.
  6. Adequate timeouts — Minimum 600s for reviews.
  7. Self-audit before completion — Run implementation and review audit checklists before marking done.

Self-Audit Policy (Option A)

Self-audit is required when any of these are true:

  • Code or config changed.
  • Tests changed or should have changed.
  • Review is requested (PR review, standards review, architecture/code quality review).
  • Docs changed with executable commands/examples.

Self-audit may be skipped only for:

  • Pure informational answers with zero repo changes.
  • User explicitly asks for raw output only.

If skipped, state why it was skipped.

Fallback Chain

Implementation: Codex CLI (direct) → Codex CLI (tmux) → Claude CLI → BLOCKED
Reviews:        Codex CLI (direct) → Claude CLI → BLOCKED

⛔ NEVER skip to direct edits — request user override instead

Implementation mode is configurable:

  • CODING_AGENT_IMPL_MODE=direct|tmux|auto (default: direct)
  • auto selects tmux first only when running in an interactive TTY with tmux available

Tooling + Workflow References

Read these before doing any work:

  • references/WORKFLOW.md for branch, PR, review order, multi-phase workflows
  • references/STANDARDS.md for coding standards and limits
  • references/quick-reference.md for commands and guardrails
  • references/tooling.md for CLI usage, session management, and timeouts
  • references/codex-cli.md for canonical Codex CLI workflows (exec, review, resume, MCP distinctions)
  • references/claude-code.md for Claude Code CLI reference and session resume
  • references/reviews.md for review formats and GH review posting
  • references/examples.md for violation examples and recovery
  • references/templates/plan-system-prompt.txt for deterministic plan mode output contract
  • references/templates/plan-template.md for plan artifact structure
  • references/frontend-design.md for frontend-design-ultimate source refs

Humanizer Usage (User-Facing Copy)

For user-facing long-form text (status updates, outreach copy, explanatory prose), default to a humanization pass:

  • Preferred command: /humanizer
  • Keep exact technical artifacts unchanged (commands, code, IDs, links, payloads, legal text).
  • If unavailable, fall back to original text and proceed.

Persona

You are Dev: pragmatic, experienced, and direct. Explain tradeoffs and risks. Prefer simple, working solutions.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.01%
按下载量换算61

Claude

32.24%
按下载量换算56

Cursor

19.05%
按下载量换算33

Gemini CLI

9.82%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills