Token导航 LogoToken导航TokenDH.com
开发操作浏览器github未标认证来源可访问许可证需确认审计提醒

goGO 工具

Agent Skill

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

总安装

1,152

周安装

49

GitHub Stars

37

下载量

404
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/terrylica/cc-skills --skill go

简介

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

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中整理仓库状态与代码变更。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围、维护状态及是否涉及文件读写或网络请求。
  • go 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

⛔ ITP Workflow — STOP AND READ

DO NOT ACT ON ASSUMPTIONS. Read this file first.

This is a structured workflow command. Follow the phases in order.

Your FIRST and ONLY action right now: Execute the TodoWrite below.

Self-Evolving Skill: This skill improves through use. If instructions are wrong, parameters drifted, or a workaround was needed — fix this file immediately, don't defer. Only update for real, reproducible issues.

⛔ MANDATORY FIRST ACTION: Plan-Aware Todo Integration

YOUR FIRST ACTION MUST BE a MERGED TodoWrite that preserves existing todos.

DO NOT:

  • ❌ Overwrite existing todos from plan files or previous sessions
  • ❌ Ignore the plan file at ~/.claude/plans/*.md
  • ❌ Create your own todos without checking for existing ones
  • ❌ Jump to coding without completing Step 0
  • ❌ Create a branch before TodoWrite

Follow the full merge strategy (Steps 0.1-0.5) and TodoWrite template: Todo Merge Strategy

After TodoWrite completes, proceed to Preflight section below.


Quick Reference

Skills Invoked

SkillPhasePurpose
implement-plan-preflightPreflightADR + Design Spec creation
adr-graph-easy-architectPreflightArchitecture diagrams
impl-standardsPhase 1Error handling, constants
mise-configurationPhase 1Env var centralization patterns
adr-code-traceabilityPhase 1Code-to-ADR references
code-hardcode-auditPhase 1Pre-release validation
semantic-releasePhase 3Version tagging + release
pypi-dopplerPhase 3PyPI publishing (if applicable)

File Locations

ArtifactPathNotes
ADR/docs/adr/$ADR_ID.mdPermanent
Design Spec/docs/design/$ADR_ID/spec.mdPermanent, SSoT after Preflight
Global Plan~/.claude/plans/<adj-verb-noun>.mdEPHEMERAL - replaced on new plan

Spec YAML Frontmatter

---
adr: YYYY-MM-DD-slug # Links to ADR (programmatic)
source: ~/.claude/plans/<adj-verb-noun>.md # Global plan (EPHEMERAL)
implementation-status: in_progress # in_progress | blocked | completed | abandoned
phase: preflight # preflight | phase-1 | phase-2 | phase-3
last-updated: YYYY-MM-DD
---

Note: The source field preserves the global plan filename for traceability, but the file may no longer exist after a new plan is created.

ADR ID Format

ADR_ID="$(date +%Y-%m-%d)-<slug>"

Example: 2025-12-01-clickhouse-aws-ohlcv-ingestion

Folder Structure

/docs/
  adr/
    YYYY-MM-DD-slug.md          # ADR file
  design/
    YYYY-MM-DD-slug/            # Design folder (1:1 with ADR)
      spec.md                   # Active implementation spec (SSoT)

Naming Rule: Use exact same YYYY-MM-DD-slug for both ADR and Design folder.


CRITICAL: Mandatory Workflow Execution

THIS WORKFLOW IS NON-NEGOTIABLE. DO NOT SKIP ANY PHASE.

You MUST execute ALL phases in order, regardless of task complexity:

  1. Step 0: TodoWrite initialization (FIRST ACTION - NO EXCEPTIONS)
  2. Preflight: ADR + Design Spec creation
  3. Phase 1: Implementation per spec.md
  4. Phase 2: Format & Push
  5. Phase 3: Release (if on main/master)

FORBIDDEN BEHAVIORS:

  • ❌ Deciding "this is simple, skip the workflow"
  • ❌ Jumping directly to implementation without TodoWrite
  • ❌ Skipping ADR/Design Spec for "document fixes" or "small changes"
  • ❌ Making autonomous judgments to bypass phases

If the task seems too simple for this workflow: Stop and ask the user if they want to proceed without /itp:go. Do NOT silently skip phases.


Arguments

Parse $ARGUMENTS for:

ArgumentShortDescriptionDefault
slug-Feature name for ADR ID (e.g., clickhouse-aws-ohlcv-ingestion)Derive from Global Plan context
--branch-bCreate branch {type}/{adr-id} from main/masterWork on current branch
--continue-cContinue in-progress work; optionally provide decisionLast "Recommended Next Steps"
--release-rEnable semantic-release in Phase 3 (required on main for release)Skip Phase 3 release
--publish-pEnable PyPI publishing in Phase 3 (required on main for publish)Skip Phase 3 publish

Detailed usage examples, branch types, and slug derivation rules: Arguments Reference


Workflow Preview

Detect branch and show expected workflow before starting. See Workflow Preview for the branch detection script and condition table.


Step 0: Initialize Todo List (ALREADY DONE)

If you followed the STOP instruction at the top, this step is complete.

The TodoWrite template is in the Todo Merge Strategy. If you haven't executed it yet, STOP and go back to the top.

Mark each todo in_progress before starting, completed when done.

Preflight Gate (MANDATORY)

You CANNOT proceed to Phase 1 until ALL Preflight todos are marked completed.

Before starting "Phase 1: Execute implementation tasks":

  1. Verify all Preflight: todos show completed
  2. Verify ADR file exists at /docs/adr/$ADR_ID.md
  3. Verify design spec exists at /docs/design/$ADR_ID/spec.md

If any Preflight item is not complete, STOP and complete it first. Do NOT skip ahead.


Preflight: Artifact Setup

MANDATORY Skill tool call: implement-plan-preflight -- activate NOW before proceeding.

This skill provides detailed ADR and Design Spec creation instructions (MADR 4.0 frontmatter, perspectives taxonomy, validation).

Preflight Steps (via skill)

  1. P.0: Create feature branch FIRST (if -b flag) -- MUST happen before ANY file operations
  2. P.1: MANDATORY Skill tool call: implement-plan-preflight -- activate NOW for ADR/spec instructions
  3. P.2: Create ADR file -- path in Quick Reference
  4. P.2.1: ADR Diagram Creation (MANDATORY for ALL ADRs) ALL ADRs require BOTH diagrams -- NO EXCEPTIONS, regardless of task complexity. BLOCKING GATE: Do NOT proceed to P.3 until BOTH diagrams are verified in ADR.

- INVOKE: Skill tool call with adr-graph-easy-architect -- triggers diagram workflow - CREATE: Before/After diagram -- visualizes state change in Context section - CREATE: Architecture diagram -- visualizes component relationships in Architecture section - VERIFY: Confirm BOTH diagrams embedded in ADR before proceeding

  1. P.3: Create design spec -- path in Quick Reference
  2. P.4: Verify checkpoint

WHY P.0 FIRST: Files created before git checkout -b stay on main/master. Branch must exist before ADR/spec creation.

Preflight Checkpoint (MANDATORY)

STOP. Verify artifacts exist before proceeding to Phase 1. Full checklist and validator script: Preflight Checkpoint


Phase 1: Implementation

1.1 Resumption Protocol

Entry point for both fresh starts and continuations. Full protocol (continuation detection, branch verification, sync checks): Phase 1 Protocols

1.2 Implement the Spec

Execute each task in spec.md:

  1. Mark current task as in_progress in todo list
  2. Implement the change
  3. Verify it works
  4. Update spec.md to reflect completion
  5. Mark task as completed
  6. Move to next task

1.3 Engineering Standards

Skill Execution Order (invoke sequentially, in this order):

  1. impl-standards -- Apply error handling & constants patterns FIRST
  2. mise-configuration -- Centralize config via mise [env] SECOND
  3. adr-code-traceability -- Add ADR references to code THIRD
  4. code-hardcode-audit -- Final audit LAST (before Phase 2)

MANDATORY Skill tool call: impl-standards -- activate NOW for detailed standards.

MANDATORY Skill tool call: mise-configuration -- activate when creating/modifying scripts with configurable values.

MANDATORY Skill tool call: adr-code-traceability -- activate NOW for ADR references in code.

MANDATORY Skill tool call: code-hardcode-audit -- activate NOW before release.

1.4 Decision Capture

When implementation requires a user decision, follow the decision capture protocol: Decision Capture

1.5 Status Synchronization Protocol

Spec implementation-status drives ADR status updates. Full sync table and scripts: Status Sync Protocol

Phase 1 Success Criteria

  • Implementation complete per spec.md
  • All artifacts synced (ADR <-> spec <-> todo <-> code)
  • New files include ADR: {adr-id} in file header
  • Non-obvious changes have inline ADR: comments

Phase 2: Format & Push

Execute Prettier formatting, git push, and browser open. Full scripts: Phase 2 Scripts

Phase 2 Success Criteria

  • Markdown formatted with Prettier
  • Pushed to GitHub
  • Files viewable in browser

Phase 3: Release & Publish (Requires -r or -p Flag on Main)

Phase 3 requires EXPLICIT flags. It does NOT run automatically.

For entry gate logic and branch-specific messaging, see Phase 3 Gate Logic.

3.1 Pre-Release Verification

Before releasing:

  • All Success Criteria items in design spec are checked off
  • Status value in design spec is updated (e.g., Accepted, Implemented)
  • ADR and spec.md are in sync with final implementation
  • Version fields use semantic-release patterns (no dynamic versioning)

3.2 Semantic Release (if -r flag)

Condition: Only execute if -r or --release flag was provided.

MANDATORY Skill tool call: semantic-release -- activate NOW for version tagging and release.

3.3 PyPI Publishing (if -p flag)

Condition: Only execute if -p or --publish flag was provided.

Only if package pre-exists on PyPI:

  • MANDATORY Skill tool call: pypi-doppler -- activate NOW to publish

3.4 Earthly Pipeline

Use Earthly as canonical pipeline: non-blocking, observability-first, ensure GitHub Release exists, record stats/errors, Pushover alert, wire into GitHub Actions.

Phase 3 Success Criteria

  • ADR status updated to accepted or implemented
  • Release completed via semantic-release
  • If feature branch: PR created, Phase 3 skipped

Troubleshooting

IssueCauseSolution
TodoWrite not foundSkipped mandatory first stepStart from top of file, execute TodoWrite
ADR file not createdPreflight incompleteRun Skill(itp:implement-plan-preflight)
Branch mismatchWorking on wrong branchSwitch to correct branch with git checkout
Phase 3 skippedNot on main/masterMerge to main first, then run /itp:go -r
semantic-release failsNo GITHUB_TOKENCheck token with echo $GITHUB_TOKEN
Diagram missinggraph-easy not invokedRun Skill(itp:adr-graph-easy-architect)
Spec validation failsMissing frontmatter fieldsCheck required fields in Quick Reference

Post-Execution Reflection

After this skill completes, reflect before closing the task:

  1. Locate yourself. — Find this SKILL.md's canonical path (Glob for this skill's name) before editing. All corrections target THIS file and its sibling references/ — never other documentation.
  2. What failed? — Fix the instruction that caused it. If it could recur, add it as an anti-pattern.
  3. What worked better than expected? — Promote it to recommended practice. Document why.
  4. What drifted? — Any script, reference, or external dependency that no longer matches reality gets fixed now.
  5. Log it. — Every change gets an evolution-log entry with trigger, fix, and evidence.

Do NOT defer. The next invocation inherits whatever you leave behind.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.11%
按下载量换算146

Claude

27.85%
按下载量换算113

Cursor

20.33%
按下载量换算82

Gemini CLI

9.85%
按下载量换算40

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills