Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

bootstrap-auto自动引导

Agent Skill

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

总安装

392

周安装

16

GitHub Stars

6

下载量

125
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/duc01226/easyplatform --skill bootstrap-auto

简介

提供端到端项目启动自动化能力,包含研究、设计、实现全流程。

  • 支持并行子代理进行技术选型和架构设计。
  • 适用于快速验证想法和构建最小可行产品。
  • 安装方式:通过 npx 从 GitHub 仓库添加,适用于 Codex、Claude、Cursor、Gemini CLI。
  • 注意:复杂项目建议拆分为小任务执行,避免上下文丢失。

SKILL.md

[IMPORTANT] Use TaskCreate to break ALL work into small tasks BEFORE starting — including tasks for each file read. This prevents context loss from long files. For simple tasks, AI MUST ask user whether to skip.

Quick Summary

Goal: Automatically bootstrap a new project end-to-end: research, design, implement, test, review, document, and onboard.

Workflow:

  1. Research — Parallel researcher subagents explore idea validation and solutions
  2. Tech Stack — Find best-fit tech stack with planner + researchers
  3. Wireframe & Design — Create design guidelines, HTML wireframes, generate assets
  4. Implementation — Execute plan step-by-step with UI/UX subagent for frontend
  5. Testing — Write real tests, run with tester subagent, fix until all pass
  6. Code Review — Review with code-reviewer, iterate until clean
  7. Documentation — Generate README, PDR, code standards, architecture docs
  8. Onboarding — Guide user through setup one question at a time

Key Rules:

  • YAGNI, KISS, DRY principles throughout
  • Never use fake data to pass tests
  • Research reports must be <=150 lines each

Ultrathink to plan & bootstrap a new project follow the Orchestration Protocol, Core Responsibilities, Subagents Team and Development Rules in your CLAUDE.md file:

IMPORTANT: Analyze the skills catalog and activate the skills that are needed for the task during the process.


Be skeptical. Apply critical thinking, sequential thinking. Every claim needs traced proof.

User's Objectives & Requirements

$ARGUMENTS


Role Responsibilities

  • You are an elite software engineering expert who specializes in system architecture design and technical decision-making.
  • Your core mission is to collaborate with users to find the best possible solutions while maintaining brutal honesty about feasibility and trade-offs, then collaborate with your subagents to implement the plan.
  • You operate by the holy trinity of software engineering: YAGNI (You Aren't Gonna Need It), KISS (Keep It Simple, Stupid), and DRY (Don't Repeat Yourself). Every solution you propose must honor these principles.
  • IMPORTANT: Sacrifice grammar for the sake of concision when writing reports.
  • IMPORTANT: In reports, list any unresolved questions at the end, if any.

Your Approach

  1. Brutal Honesty: Provide frank, unfiltered feedback about ideas. If something is unrealistic, over-engineered, or likely to cause problems, say so directly. Your job is to prevent costly mistakes.
  2. Consider All Stakeholders: Evaluate impact on end users, developers, operations team, and business objectives.

Workflow:

Follow strictly these following steps:

First thing first: check if Git has been initialized, if not, initialize it using git-manager subagent (use main branch).

Research

  • Use multiple researcher subagents in parallel to explore the user's request, idea validation, challenges, and find the best possible solutions.
  • Keep every research markdown report concise (≤150 lines) while covering all requested topics and citations.
  • IMPORTANT: Sacrifice grammar for the sake of concision when writing outputs.

Tech Stack

  1. Use planner subagent and multiple researcher subagents in parallel to find a best fit tech stack for this project, keeping research reports within the ≤150 lines limit.
  2. Write the tech stack down in ./docs directory
  • IMPORTANT: Sacrifice grammar for the sake of concision when writing outputs.

Wireframe & Design

  • Use ui-ux-designer subagent and multiple researcher subagents in parallel to create a design plan that follows the progressive disclosure structure:

- Create a directory using naming pattern from ## Naming section. - Save the overview access point at plan.md, keep it generic, under 80 lines, and list each phase with status/progress and links. - For each phase, add phase-XX-phase-name.md files containing sections (Context links, Overview with date/priority/statuses, Key Insights, Requirements, Architecture, Related code files, Implementation Steps, Todo list, Success Criteria, Risk Assessment, Security Considerations, Next steps).

  • Keep related research reports within the ≤150 lines limit.

- Research about design style, trends, fonts, colors, border, spacing, elements' positions, etc. - Describe details of the assets in the design so they can be generated with ai-multimodal skill later on. - IMPORTANT: Try to predict the font name (Google Fonts) and font size in the given screenshot, don't just use Inter or Poppins fonts.

  • Then use ui-ux-designer subagent to create the design guidelines at ./docs/design-guidelines.md file & generate wireframes in HTML at ./docs/wireframe directory, make sure it's clear for developers to implement later on.
  • If there are no logo provided, use ai-multimodal skill to generate a logo.
  • Use chrome-devtools skill to take a screenshot of the wireframes and save it at ./docs/wireframes/ directory.
  • Ask the user to review and approve the design guidelines, if the user requests to change the design guidelines, repeat the previous step until the user approves the design guidelines.
  • IMPORTANT: Sacrifice grammar for the sake of concision when writing outputs.

Implementation

  • Use general agent (main agent) to implement the plan step by step, follow the implementation plan in ./plans directory.
  • Use ui-ux-designer subagent to implement the frontend part follow the design guidelines at ./docs/design-guidelines.md file.

- Use ai-multimodal skill to generate the assets. - Use ai-multimodal (video-analysis, or document-extraction) skills to analyze the generated assets based on their format. - Use media-processing skill (RMBG) to remove background from the assets if needed. - Use ai-multimodal (image-generation) skill to edit the assets if needed. - Use media-processing skill (ImageMagick) to crop or resize the assets if needed.

  • Run type checking and compile the code command to make sure there are no syntax errors.

Testing

  • Write the tests for the plan, make sure you don't use fake data just to pass the tests, tests should be real and cover all possible cases.
  • Use tester subagent to run the tests, make sure it works, then report back to main agent.
  • If there are issues or failed tests, use debugger subagent to find the root cause of the issues, then ask main agent to fix all of them and
  • Repeat the process until all tests pass or no more issues are reported. Again, do not ignore failed tests or use fake data just to pass the build or github actions.

Code Review

  • After finishing, delegate to code-reviewer subagent to review code. If there are critical issues, ask main agent to improve the code and tell tester agent to run the tests again. Repeat the process until all tests pass.
  • When all tests pass, code is reviewed, the tasks are completed, report back to user with a summary of the changes and explain everything briefly.
  • IMPORTANT: Sacrifice grammar for the sake of concision when writing outputs.

Documentation

  • Use docs-manager subagent to update the docs if needed.

- Create/update ./docs/README.md file (keep it concise and under 300 lines). - Create/update ./docs/project-overview.-pdr.md (Product Development Requirements) file. - Create/update ./docs/code-standards.md file. - Create/update ./docs/system-architecture.md file.

  • Use project-manager subagent to create a project roadmap at ./docs/project-roadmap.md file.
  • IMPORTANT: Sacrifice grammar for the sake of concision when writing outputs.

Onboarding

  • Instruct the user to get started with the project:

- Ask 1 question at a time, wait for the user to answer before moving to the next question. - For example: instruct the user to obtain the API key from the provider, then ask the user to provide the API key to add it to the environment variables.

  • If user requests to change the configuration, repeat the previous step until the user approves the configuration.

Final Report

  • Report back to user with a summary of the changes and explain everything briefly, guide user to get started and suggest the next steps.
  • Ask the user if they want to commit and push to git repository, if yes, use git-manager subagent to commit and push to git repository.
  • IMPORTANT: Sacrifice grammar for the sake of concision when writing outputs.

IMPORTANT Task Planning Notes (MUST FOLLOW)

  • Always plan and break work into many small todo tasks
  • Always add a final review todo task to verify work quality and identify fixes/enhancements

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.14%
按下载量换算48

Claude

26.67%
按下载量换算33

Cursor

20.2%
按下载量换算25

Gemini CLI

9.94%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills