Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计提醒

align-repo对齐回购协议

Agent Skill

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

总安装

392

周安装

16

GitHub Stars

4

下载量

125
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/apocohq/skills --skill align-repo

简介

对齐回购协议用于审计仓库配置是否符合团队标准,检查 .claude/settings.json 和 CLAUDE.md 设置。

  • 适合团队协作环境中确保开发规范一致性的场景,支持 Codex、Claude 等主流宿主。
  • 按清单逐项检查配置对齐状态,对不合规项提出修改建议但不会自动应用变更。
  • 安装命令:npx skills add https://github.com/apocohq/skills --skill align-repo
  • 执行时会严格逐步提问,每次只处理一项,需用户明确授权后才能进行修改操作。

SKILL.md

Align Repo Conventions

Audit the current repo's .claude/settings.json and CLAUDE.md against team standards.

Execution Rules

  • Execute the checklist strictly step by step.
  • Present ONE item per message. Show its status, and if action is needed, ask and STOP.
  • Do not present the next item until the user has responded.
  • If an item is already aligned, say so and immediately proceed to the next item in the same message.
  • If an item needs action, show current vs expected and ask: *"Want me to align this?"*
  • Never batch multiple action items into one message.
  • Never auto-apply changes — every modification requires explicit user confirmation.
  • Merge, don't overwrite — add missing keys without clobbering existing ones.
  • Preserve existing content in CLAUDE.md — don't remove or reorder existing sections.

Checklist

  • 0. Self-update — Run: npx skills add https://github.com/apocohq/skills --skill align-repo -a claude-code -y. If updated, tell the user: *"align-repo was updated. Please start a new session and re-run /align-repo to use the latest version."* Stop — do not continue with outdated instructions.
  • 1. Gather state — Read .claude/settings.json, CLAUDE.md, and check for .claude/settings.local.json (note existence, don't modify). If .claude/settings.json doesn't exist, ask if you should create it. If CLAUDE.md doesn't exist, ask if you should create it.
  • 2. Attribution config — Check .claude/settings.json for the expected attribution block (see Reference A).
  • 3. Allowed tools — Check allowedTools as a set (see Reference B). Report missing entries and flag extra entries (don't remove extras — they may be project-specific).
  • 4. Worktrees convention — Check .gitignore includes .worktrees/. Check CLAUDE.md for a Worktrees section (see Reference C).
  • 5. Architecture principles — Check CLAUDE.md for a Separation of Concerns & DRY section (see Reference D).
  • 6. Commit conventions — Check CLAUDE.md for a Commit Conventions section covering all 5 items (see Reference E).
  • 7. Meeting formatSkip if no meetings/ directory. Check CLAUDE.md for a Meeting Format section (see Reference F).
  • 8. Recommend skills — Review repo purpose/tech stack. For each relevant skill from Reference G, explain why it fits and ask to install. Skip skills that don't match.
  • 9. Check skill updates — Run npx skills check. If updates available, ask to run npx skills update. Skip if no skills-lock.json.
  • 10. Summary — Print the alignment summary (see Reference H).

References

A. Expected attribution

{
  "attribution": {
    "commit": "Assisted-By: Claude (Anthropic AI) <noreply@anthropic.com>",
    "pr": ""
  }
}

B. Expected allowed tools

{
  "allowedTools": [
    "Bash(git status*)",
    "Bash(git diff*)",
    "Bash(git log*)",
    "Bash(git fetch*)",
    "Bash(git branch*)",
    "Bash(git checkout -b *)",
    "Bash(git stash*)",
    "Bash(git add *)",
    "Bash(git commit *)",
    "Bash(gh issue view*)",
    "Bash(gh issue list*)",
    "Bash(gh pr view*)",
    "Bash(gh pr list*)",
    "Bash(ls:*)"
  ]
}

C. Expected worktrees convention

## Worktrees

Use `.worktrees/` for git worktrees. Branch naming follows commit conventions (e.g., `feat/session-history`).

### Setup

After creating a worktree, run project setup:

- **Node.js**: `pnpm install`
- **Python**: `uv sync`

### Verification

Run tests to confirm a clean baseline before starting work. If tests fail, report failures and ask before proceeding.

### Report

After setup, report: worktree path, test results, and readiness.

D. Expected architecture principles

## Separation of Concerns & DRY Principle

This system is a modular component system following the DRY (Don't Repeat Yourself) principle. Each piece has a single responsibility. You should be able to swap out any component without rewriting others.

E. Expected commit conventions

## Commit Conventions

- **Conventional Commits**: `type(scope): short summary` — types: `feat`, `fix`, `docs`, `refactor`, `test`, `chore`, `revert`, `style`, `perf`, `ci`, `build`.
- **Scope**: Optional but encouraged (e.g., `feat(ui):`, `fix(hook):`, `docs(design):`).
- **Body**: Optional concise bullet points for non-trivial changes.
- **Trailer**: Configured via `.claude/settings.json` `attribution` — do not add manually.
- **Branch naming**: `type/short-description` (e.g., `feat/session-history`, `fix/stale-timer`). Same type prefixes as commits.

F. Expected meeting format

## Meeting Format

---
date: "YYYY-MM-DD"
attendees:
  - First Last
  - First Last
---

# Meeting Title

One concise paragraph summarizing the meeting.

## Transcript / Notes / Meeting Minutes

G. Available skills

SkillWhat it doesWhen to suggest
process-transcriptConverts VTT meeting transcripts into structured markdown notesRepos that track meetings or have a meetings/ directory
ralph-itPicks the next user story from a PRD GitHub issue, implements it, and opens a PRRepos that use GitHub issues for PRDs or have structured user stories
write-a-prdInterviews the user and writes a PRD, then submits it as a GitHub issueAny repo that plans features via PRDs or GitHub issues
review-workDispatches a code-reviewer subagent to review changes before pushingAny repo where code quality reviews before push are desired
adrCreates, lists, and updates Architecture Decision Records in docs/adrs/Repos that track architectural decisions or have a docs/adrs/ directory

Install command: npx skills add https://github.com/apocohq/skills --skill <skill-name> -a claude-code -y

H. Summary template

## Alignment Summary
- settings.json attribution: [aligned / changed / skipped]
- settings.json allowed tools: [aligned / changed / skipped]
- .gitignore worktrees: [aligned / added / skipped]
- CLAUDE.md worktrees: [present / added / skipped]
- CLAUDE.md architecture principles: [present / added / skipped]
- CLAUDE.md commit conventions: [present / added / skipped]
- CLAUDE.md meeting format: [present / added / skipped / n/a]
- Skills installed: [list or "none"]
- Skills updated: [list or "all up to date"]
- Items skipped by user: [list if any]

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.83%
按下载量换算47

Claude

30.23%
按下载量换算38

Cursor

19.81%
按下载量换算25

Gemini CLI

9.55%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills