Token导航 LogoToken导航TokenDH.com
前端设计只读unknown未标认证来源可访问许可证需确认审计未展示

init初始化

Agent Skill

init 用于补充前端设计相关能力,适合在 Local Agent 中需要让 Agent 承接前端设计相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

245

周安装

10

下载量

78
Local Agent

安装说明

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

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。当前暂无明确安装命令,请以来源页面说明为准。

简介

init 用于补充前端设计相关能力,支持 Local Agent 参与界面初始化工作。

  • 适合处理项目脚手架搭建、依赖安装或基础样式配置。
  • 可生成标准目录结构、配置文件模板或启动脚本。
  • 安装前应检查 Node.js 环境及包管理器版本,确保兼容性。
  • 使用时应避免覆盖已有工程文件,优先采用增量更新方式。

SKILL.md

Version

Current: 1.16.0

Update this version when templates change: - Major (2.0.0): Breaking changes to file structure - Minor (1.1.0): New sections, updated rules - Patch (1.0.1): Typo fixes, clarifications

Sprint Initialization Skill

Initialize a sprint with kanban-style structure for multi-agent collaboration.


Overview

This skill creates the structure only (empty backlog). Use /sprint:add-backlog to add work items.

Generated structure:

sprints/<sprint-name>/
├── BACKLOG.md          # Work items (Feature → Task → Sub-task)
├── HANDOFF.md          # Work Board (current status)
├── INSTRUCTION.md      # Agent guidelines
├── personas/           # Agent persona files (character templates)
├── active/             # Feature-specific contexts (temporary)
└── refs/
    ├── designs/        # Feature design documents
    ├── plans/          # Task execution plans
    ├── decisions/      # Decisions (per-feature + _sprint.md for sprint-wide)
    ├── lessons/        # Lessons (per-feature + _sprint.md for sprint-wide)
    └── archive/        # Completed features (moved from BACKLOG.md)

Workflow

Phase 1: Gather Information

Ask the user:

  1. Sprint name - What should we call this sprint?

- Suggest kebab-case format (e.g., payment-system, auth-refactor)

  1. Location - Where should we create it?

- Default: sprints/<sprint-name>/ - Allow custom path if needed

  1. Team (optional) - Who will work on this?

- Persona names: #rook, #pixel, #dash, or custom names - If not specified, use default #agent

  1. Mode - How do you want to manage code?

- default - Sprint and code in same working directory (existing behavior) - worktree - Each Feature gets its own git worktree - Sprint files stay in main worktree (Single Source of Truth) - Code work happens in separate worktrees per Feature - If worktree selected: Add sprint path to .gitignore

  1. Worktree creation method (worktree mode only)

- "How should worktrees be created?" - Default: git worktree add (recommended) - Custom: User provides command template - "Where should worktrees be placed?" - Suggest: ../<project>-worktrees/ (outside main repo) - Allow custom path prefix

Phase 2: Create Structure

Create the following files from templates:

  1. BACKLOG.md from assets/templates/BACKLOG-TEMPLATE.md

- Empty backlog structure - Ready for features to be added

  1. HANDOFF.md from assets/templates/HANDOFF-TEMPLATE.md

- Work Board format - In Progress / In Review tables

  1. INSTRUCTION.md from assets/templates/INSTRUCTION-TEMPLATE.md

- Multi-agent workflow - Session start/end procedures - If team specified, add team section

  1. active/ folder

- Create empty folder - Add README explaining purpose

  1. refs/ structure

- refs/designs/ with README - refs/plans/ with README - refs/decisions/ with README + _sprint.md (sprint-wide decisions) - refs/lessons/ with README + _sprint.md (sprint-wide lessons) - refs/archive/ with README (for completed features)

  1. Version file

- Create .sprint-version with current template version (from ## Version section above) - Format: just the version number (e.g., 1.0.0)

  1. .sprint-config

- JSON config storing sprint mode and worktree settings - Created for both modes (to make mode explicit)

  1. personas/ folder Default mode: {"mode": "default"} Worktree mode: {"mode": "worktree", "sprintRoot": "<absolute-path-to-sprint-dir>", "worktree": {"command": "git worktree add {path} -b {branch}", "pathPrefix": "../<project>-worktrees"}}

- Copy all persona files from plugin assets/personas/ to sprint personas/ - These are character templates agents adopt during sessions - Users can customize or add new personas after init - worktree.command: Worktree creation command - Default: "git worktree add {path} -b {branch}" - Custom example: "./scripts/create-worktree.sh {branch} {path}" - Placeholders: {path} = worktree path, {branch} = branch name - worktree.pathPrefix: Parent path where worktrees are created - Default: "../<project>-worktrees" - Feature worktrees are created under this path

Worktree mode additional steps:

  • Add sprint path to project .gitignore
  • Include Sprint Root absolute path + Worktree Mode section in INSTRUCTION.md

Phase 3: Confirm

Show created structure and explain next steps:

Default mode:

Sprint created at: sprints/<sprint-name>/

Files:
- BACKLOG.md - Add work items with /sprint:add-backlog
- HANDOFF.md - Work board (current status)
- INSTRUCTION.md - Start work sessions with @INSTRUCTION.md #persona-name

Next steps:
1. Add work items: /sprint:add-backlog
2. Start working: @INSTRUCTION.md #rook

Worktree mode:

Sprint created at: sprints/<sprint-name>/ (worktree mode)

Files:
- BACKLOG.md - Add work items with /sprint:add-backlog
- HANDOFF.md - Work board (current status)
- INSTRUCTION.md - Start work sessions with @INSTRUCTION.md #persona-name
- .sprint-config - Sprint configuration (mode: worktree)

Sprint path added to .gitignore (sprint files are not git-tracked).

Next steps:
1. Add work items: /sprint:add-backlog
2. Start working: @INSTRUCTION.md #rook

Assets

  • assets/templates/BACKLOG-TEMPLATE.md - Backlog structure
  • assets/templates/HANDOFF-TEMPLATE.md - Work Board template
  • assets/templates/INSTRUCTION-TEMPLATE.md - Agent guidelines
  • assets/templates/FEATURE-DESIGN-TEMPLATE.md - Feature design doc
  • assets/templates/TASK-PLAN-TEMPLATE.md - Task plan doc
  • assets/templates/ACTIVE-FEATURE-TEMPLATE.md - Active feature context
  • assets/refs/designs-README.md - README for designs folder
  • assets/refs/plans-README.md - README for plans folder
  • assets/refs/decisions-README.md - README for decisions folder
  • assets/refs/lessons-README.md - README for lessons folder
  • assets/refs/archive-README.md - README for archive folder
  • assets/personas/rook.md - Pragmatist backend engineer
  • assets/personas/pixel.md - Detail-obsessed frontend engineer
  • assets/personas/dash.md - Enthusiastic fullstack prototyper
  • assets/personas/slate.md - Conservative infrastructure engineer
  • assets/personas/echo.md - Socratic discussion facilitator
  • assets/personas/thorn.md - Uncompromising code reviewer

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Local Agent

83.92%
按下载量换算65

安全审计

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

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills