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

aif-commitaif 提交

Agent Skill

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

总安装

706

周安装

30

GitHub Stars

535

下载量

247
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/lee-to/ai-factory --skill aif-commit

简介

aif-commit 遵循 Conventional Commits 规范生成标准化提交消息。

  • 适合在团队协作中保持日志清晰,便于自动化发布流程。
  • 支持根据变更类型(feat/fix/docs)自动匹配模板与后缀规则。
  • 可集成 git hook 实现提交前校验,确保符合项目约定。
  • aif-commit 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Conventional Commit Generator

Generate commit messages following the Conventional Commits specification.

Workflow

FIRST: Read .ai-factory/config.yaml if it exists to resolve:

  • Paths: paths.description, paths.architecture, paths.rules_file, paths.roadmap, and paths.rules
  • Language: language.ui for prompts and commit message conventions
  • Git preference: git.skip_push_after_commit for post-commit push behavior
  • Rules hierarchy: rules.base plus any named rules.<area> entries

If config.yaml doesn't exist, use defaults:

  • Paths: .ai-factory/ for all artifacts
  • Language: en (English)
  • Git preference: skip_push_after_commit: false

Read .ai-factory/skill-context/aif-commit/SKILL.md — MANDATORY if the file exists.

This file contains project-specific rules accumulated by /aif-evolve from patches, codebase conventions, and tech-stack analysis. These rules are tailored to the current project.

How to apply skill-context rules:

  • Treat them as project-level overrides for this skill's general instructions
  • When a skill-context rule conflicts with a general rule written in this SKILL.md, the skill-context rule wins (more specific context takes priority — same principle as nested CLAUDE.md files)
  • When there is no conflict, apply both: general rules from SKILL.md + project rules from skill-context
  • Do NOT ignore skill-context rules even if they seem to contradict this skill's defaults — they exist because the project's experience proved the default insufficient
  • CRITICAL: skill-context rules apply to ALL outputs of this skill — including the commit message format and conventions. If a skill-context rule says "commits MUST follow format X" or "message MUST include Y" — you MUST comply. Generating a commit message that violates skill-context rules is a bug.

Enforcement: After generating any output artifact, verify it against all skill-context rules. If any rule is violated — fix the output before presenting it to the user.

  1. Analyze Changes

- Run git status to see staged files - Run git diff --cached to see staged changes - If nothing staged, show warning and suggest staging

  1. Run Context Gates (Read-Only)

- Check the resolved architecture and description artifacts (use paths from config) to catch obvious scope/boundary drift - Check the resolved RULES.md and roadmap artifacts (use paths from config) to catch rule and milestone alignment issues - Check rules hierarchy (resolved paths.rules_file + rules.base + named rules.<area>) for commit conventions - Missing optional files (ROADMAP.md, RULES.md) are WARN, not blockers - Never modify context artifacts from this command

  1. Determine Commit Type

- feat: New feature - fix: Bug fix - docs: Documentation only - style: Code style (formatting, semicolons) - refactor: Code change that neither fixes a bug nor adds a feature - perf: Performance improvement - test: Adding or modifying tests - build: Build system or dependencies - ci: CI configuration - chore: Maintenance tasks

  1. Identify Scope

- From file paths (e.g., src/auth/auth) - From argument if provided - Optional - omit if changes span multiple areas

  1. Generate Message

- Keep subject line under 72 characters - Use imperative mood ("add" not "added") - Don't capitalize first letter after type - No period at end of subject

Format

<type>(<scope>): <subject>

<body>

<footer>

Examples

Simple feature:

feat(auth): add password reset functionality

Bug fix with body:

fix(api): handle null response from payment gateway

The payment API can return null when the gateway times out.
Added null check and retry logic.

Fixes #123

Breaking change:

feat(api)!: change response format for user endpoint

BREAKING CHANGE: user endpoint now returns nested profile object

Behavior

When invoked:

  1. Check for staged changes
  2. Analyze the diff content
  3. Run read-only context gates and summarize findings as WARN/ERROR
  4. If commit type is feat/fix/perf and roadmap exists, check milestone linkage; if missing, warn and suggest adding linkage in commit body/footer
  5. Propose a commit message
  6. Confirm with the user before committing: AskUserQuestion: Proposed commit message: <type>(<scope>): <subject> Options: 1. Commit as is 2. Edit message 3. Cancel
  7. Handle user response:

- Commit as is → proceed to step 8 - Edit message → ask the user for the corrected message via AskUserQuestion, then return to step 6 with the new message - Cancel → stop, do NOT commit. End the workflow

  1. Execute git commit with the confirmed message
  2. Post-commit push handling:

- If git.skip_push_after_commit = true in resolved config: - Skip push prompt entirely - End workflow after successful local commit - Otherwise (default behavior), offer to push: AskUserQuestion: Push to remote? Options: 1. Push now 2. Skip push - Show branch/ahead status: git status -sb - If the branch has no upstream, use: git push -u origin <branch> - Otherwise: git push - Push now → execute push command based on upstream status: - if branch has no upstream → git push -u origin <branch> - otherwise → git push - Skip push → end the workflow

If argument provided (e.g., /aif-commit auth):

  • Use it as the scope
  • Or as context for the commit message

Important

  • Never commit secrets or credentials
  • Review large diffs carefully before committing
  • /aif-commit has no implicit strict mode — context gates are warning-first unless user explicitly requests blocking behavior
  • Treat the resolved architecture, roadmap, RULES.md, and description artifacts as read-only context in this command
  • If staged changes contain unrelated work (e.g., a feature + a bugfix, or changes to independent modules), suggest splitting into separate commits:

1. Show which files/hunks belong to which commit 2. Confirm split plan with the user: AskUserQuestion: Split into separate commits? Options: 1. Yes, split as suggested 2. No, commit everything together 3. Let me adjust the grouping 3. Handle user response: - Yes, split as suggested → proceed to step 4 - No, commit everything together → proceed to step 5 (propose single commit message) - Let me adjust the grouping → ask the user for the adjusted grouping via AskUserQuestion, then return to step 2 with the new plan 4. Unstage all: git reset HEAD 5. Stage and commit each group separately using git add <files> + git commit 6. Offer to push only after all commits are done

  • NEVER add Co-Authored-By or any other trailer attributing authorship to the AI. Commits must not contain AI co-author lines

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.18%
按下载量换算87

Claude

29.45%
按下载量换算73

Cursor

21.44%
按下载量换算53

Gemini CLI

10.57%
按下载量换算26

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills