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

project-initialization项目初始化

Agent Skill

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

总安装

318

周安装

13

GitHub Stars

10

下载量

103
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/aspiers/ai-config --skill project-initialization

简介

project-initialization 用于改进 /init 命令生成的 AI 代理规则文件,提升多 Agent 环境下的可发现性与一致性。

  • 适用于新仓库初始化或现有 CLAUDE.md/AGENTS.md 缺失的情况,增强跨工具兼容性。
  • 它会生成标准化的 AI 可读规则文件,遵循公开文档约定的目录结构与内容组织方式。
  • 安装前应验证目标路径是否为空且具备写入权限,避免覆盖重要配置或引发冲突。
  • 输出文件需包含足够上下文供不同 AI 工具解析,但不应替代人工制定详细开发规范。

SKILL.md

Project Initialization

Improve the results of running the /init command to create AI agent rules.

When to Use This Skill

Use this skill when:

  • Setting up a new repository for AI agent collaboration
  • Neither CLAUDE.md nor AGENTS.md exists
  • The /init command has been run but needs improvement
  • You want AI agent rules to be discoverable by multiple agents

Goal

The /init command creates CLAUDE.md, but this is only useful for Claude Code. This skill ensures the same file contents are discoverable and readable by multiple AI agents looking in different places.

This follows the standard documented at: https://agent-rules.org/

Process

Perform the following steps:

  1. Check existing files: Verify if CLAUDE.md and/or AGENTS.md exist
  2. Handle new project: If neither file exists, first run Claude's /init process to generate initial content
  3. Rename if needed: If only CLAUDE.md exists, rename it to AGENTS.md
  4. Create symlinks: Generate symlinks so different agents can find the rules:

- CLAUDE.md → points to AGENTS.md

  1. Fix unsafe git push commands: Scan all agent instruction files (AGENTS.md, CLAUDE.md, and any other files they reference) for bare or underspecified git push invocations that could accidentally push to the wrong branch. This is a common problem with instructions added by tools like beads. What to look for: any git push that does NOT specify both a remote and a refspec, e.g.: Why this matters: a bare git push relies on the upstream tracking branch configuration. If you're on a feature branch that happens to track main, git push will push your feature commits directly to main. Using git push origin HEAD is much safer because it pushes the current branch to a remote branch of the same name, preventing accidental pushes to trunk branches. How to fix: replace bare git push with git push origin HEAD. Preserve any flags that were present, e.g. git push --forcegit push origin HEAD --force. Edge cases to handle:

- git push (no arguments at all) - git push origin (remote but no refspec) - git push --force (flags but no remote/refspec) - Lines inside code blocks (``` ` ``) and inline code ( `) - Lines in checklists like [] 6. git push (push to remote) - Comments after the command, e.g. git push # deploy - Multiple occurrences in the same file - Do NOT modify lines that already specify both remote and refspec (e.g. git push origin main, git push origin HEAD`)

  1. Verify: Confirm the symlinks work by checking file accessibility

Context

  • Existing files: ls CLAUDE.md AGENTS.md

Example Commands

# Check existing files
ls -la CLAUDE.md AGENTS.md

# Rename if needed
mv CLAUDE.md AGENTS.md

# Create symlinks
ln -s AGENTS.md CLAUDE.md

# Verify
cat CLAUDE.md

Fixing unsafe git push

Search agent instruction files for bare git push:

# Find bare git push commands in agent files
grep -n 'git push' AGENTS.md CLAUDE.md .beads/context/*.md

Example transformations:

BeforeAfter
git pushgit push origin HEAD
git push --forcegit push origin HEAD --force
git push origingit push origin HEAD
[] 6. git push[] 6. git push origin HEAD

Leave these unchanged (already safe):

| Already safe | | --- | | git push origin HEAD | | git push origin main | | git push origin HEAD --force | | git push -u origin HEAD |

Result

After this process:

  • AGENTS.md contains the authoritative AI agent rules
  • CLAUDE.md is a symlink to AGENTS.md
  • Multiple AI agents can discover and read the same rules
  • All git push commands in agent instructions explicitly specify remote and refspec to prevent accidental pushes to trunk branches

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.76%
按下载量换算38

Claude

26.95%
按下载量换算28

Cursor

18.1%
按下载量换算19

Gemini CLI

9.69%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills