Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计未展示

project_bootstrapper项目引导程序

Agent Skill

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

总安装

220

周安装

9

GitHub Stars

42

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/vuralserhat86/antigravity-agentic-skills --skill project_bootstrapper

简介

用于查找、检索和筛选项目初始化相关工具和模板。

  • 适合在关键词搜索、任务场景匹配或来源线索定位时使用。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装前建议确认权限范围和是否会触发命令执行。
  • 注意维护状态和网络访问限制。project_bootstrapper 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Project Bootstrapper

Sets up new projects or improves existing projects with development best practices, tooling, documentation, and workflow automation.

When to Use

  • "set up a new project"
  • "bootstrap this project"
  • "add best practices"
  • "improve project structure"
  • "set up development tooling"
  • "initialize project properly"

What It Sets Up

1. Project Structure

  • Standard directories (src/, tests/, docs/, scripts/,.github/)
  • Logical file organization
  • Structure improvements

2. Git Configuration

  • Comprehensive .gitignore
  • .gitattributes for line endings/diffs
  • Git hooks (pre-commit, commit-msg)
  • Branch protection patterns
  • Git LFS if needed

3. Documentation

  • Comprehensive README.md
  • CONTRIBUTING.md
  • Code documentation (JSDoc, docstrings)
  • CHANGELOG.md structure
  • Architecture docs if complex

4. Testing Setup

  • Identify/suggest testing framework
  • Test structure and conventions
  • Example/template tests
  • Configure test runners
  • Coverage reporting
  • Testing scripts/commands

5. Code Quality Tools

  • Linters (ESLint, Pylint, etc.)
  • Formatters (Prettier, Black, etc.)
  • Type checking (TypeScript, mypy, etc.)
  • Pre-commit hooks for quality
  • Editor configs (.editorconfig)
  • Code quality badges

6. Dependencies Management

  • Package manager configuration
  • Organize dependencies
  • Check security vulnerabilities
  • Set up dependency updates (Dependabot, Renovate)
  • Create lock files
  • Document dependency choices

7. Development Workflow

  • Useful npm scripts / Makefile targets
  • Environment variable templates (.env.example)
  • Docker configuration if appropriate
  • Development startup scripts
  • Hot-reload / watch modes
  • Document development workflow

8. CI/CD Setup

  • GitHub Actions / GitLab CI config
  • Automated testing
  • Automated deployment (if applicable)
  • Status badges
  • Release automation
  • Branch protection

Approach

Discovery Phase

Ask clarifying questions:

  1. Project type: New or existing?
  2. Primary purpose: Web app, library, CLI tool?
  3. Language/framework: JS/TS, Python, Go, etc.?
  4. Collaboration: Personal or team?
  5. Deployment target: Server, cloud, mobile, desktop?
  6. Preferences: Specific tools/frameworks?
  7. Scope: Full setup or specific areas?

Implementation Phase

  1. Analyze existing structure (if existing project)
  2. Create plan based on answers
  3. Show plan and get approval
  4. Implement systematically (one area at a time)
  5. Verify completeness
  6. Provide handoff documentation

Customization

Adapts to:

  • Language ecosystem: Node.js vs Python vs Go vs Rust
  • Project size: Small script vs large app
  • Team size: Solo vs collaborative
  • Maturity: Startup speed vs enterprise standards

Tools Used

  • AskUserQuestion: Gather requirements
  • Write: Create configuration files, documentation
  • Edit: Update existing files
  • Bash: Initialize tools (git init, npm init)
  • Read: Analyze existing structure
  • Glob: Find files to update

Success Criteria

  • All standard files present and configured
  • Clear and complete documentation
  • Documented development workflow
  • Automated quality tooling (pre-commit hooks)
  • Easy test execution
  • Follows language/framework conventions
  • Quick developer onboarding
  • No obvious best practices missing

Templates

  • Node.js/TypeScript web app
  • Python CLI tool
  • Python web API (FastAPI/Flask)
  • React/Next.js app
  • Go service
  • Rust CLI/library

Integration

  • feature-planning: For planning custom features
  • code-auditor: For validating setup quality
  • codebase-documenter: For generating detailed docs

Scope Control

  • Full bootstrap: Everything from scratch
  • Partial setup: Specific areas only (e.g., "just add testing")
  • Improvement pass: Enhance existing project *Project Bootstrapper v1.1 - Enhanced*

🔄 Workflow

Kaynak: Cookiecutter Documentation & UV Package Manager

Aşama 1: Stack & Tool Selection

  • Python: 2025 standardı olarak uv kullan (pip/poetry yerine). pyproject.toml tek konfigürasyon dosyası olsun.
  • Node.js: pnpm (disk efficiency) veya bun (speed) tercih et.
  • Monorepo: Birden fazla paket varsa Turborepo veya Nx kur.

Aşama 2: Scaffolding (Opinionated Defaults)

  • Linter/Formatter: Python için Ruff (tek tool, hepsi içinde), JS için Biome veya ESLint + Prettier.
  • Git Hooks: pre-commit (Python) veya husky (JS) ile commit öncesi kalite kontrolü zorunlu kıl.
  • Editor config: .editorconfig ve .vscode/extensions.json ile takımın aynı ortamda çalışmasını sağla.

Aşama 3: CI/CD & Documentation

  • GitHub Actions: ci.yml (Test & Lint) ve release.yml (NPM/PyPI publish) workflowlarını baştan ekle.
  • README: "Nasıl Kurulur", "Nasıl Test Edilir", "Nasıl Katkı Verilir" başlıklarını şablon olarak ekle.
  • License: Proje türüne uygun (MIT, Apache 2.0) lisans dosyasını oluştur.

Kontrol Noktaları

AşamaDoğrulama
1git clone ve npm install (veya uv sync) sonrası proje hemen çalışıyor mu?
2CI pipeline'ı ilk commit ile yeşil yanıyor mu?
3Gizli anahtarlar (.env) gitignore'a ekli mi?

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

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

平台分布

Claude Code

29.89%
按下载量换算21

trae

22.06%
按下载量换算16

Antigravity

18.99%
按下载量换算13

windsurf

10.96%
按下载量换算8

Codex

6.86%
按下载量换算5

Gemini CLI

3.36%
按下载量换算2

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills