Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

dev-new-tool开发新工具

Agent Skill

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

总安装

214

周安装

9

GitHub Stars

12

下载量

75
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/jackchuka/skills --skill dev-new-tool

简介

dev-new-tool 提供从零到 MVP 的工具开发全流程指导,包括竞品调研、方案设计和技术验证。

  • 分阶段推进:先研究可行性,再编写详细计划,最后构建核心功能。
  • 强调用户确认机制,任何重大变更前必须获得明确授权。
  • 适用于初创项目或实验性功能的快速原型验证场景。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

New Tool Kickoff

A structured workflow for turning a tool idea into a working MVP. Covers the full cycle: research existing solutions, brainstorm approach, write a plan, scaffold the project, build core features, and write documentation.

When to Use

  • User says "I have an idea for a tool/CLI/library"
  • User wants to start a new project from scratch
  • User wants to research feasibility before building
  • Greenfield development of a focused tool or CLI

Workflow

Phase 1: Research (Stop point: get user approval before Phase 2)

Goal: Understand the landscape before building.

  1. Clarify the idea: Ask what problem the tool solves, who uses it, and what the core workflow looks like
  2. Search for existing tools: Web search for similar tools, libraries, or CLIs
  3. Evaluate alternatives: For each existing tool found:

- What does it do well? - What gaps or limitations does it have? - Is it actively maintained?

  1. API/Integration research: If the tool integrates with external services, research their APIs:

- Authentication methods - Rate limits and pagination - Data models and available endpoints

  1. Present findings: Summarize as a brief landscape overview:

- Existing tools and their limitations - API capabilities (if applicable) - Recommended approach based on findings

Ask the user: "Based on this research, should we proceed with building? Any adjustments to the concept?"

Phase 2: Brainstorm & Design (Stop point: get user approval before Phase 3)

Goal: Nail down the approach before writing code.

  1. Core features: Identify the minimum set of features for a useful v1
  2. Technology choices: Recommend language, frameworks, and key dependencies based on:

- User's preferences and existing projects - Tool requirements (CLI, TUI, web, library) - Available ecosystem (Go for CLI tools, TypeScript for Node ecosystem, etc.)

  1. Interface design: Define the user-facing interface:

- CLI: command structure, flags, arguments - Library: public API surface - TUI: key bindings, views

  1. Architecture sketch: High-level component breakdown (keep it simple — avoid over-engineering)
  2. Name the project: Suggest a name if the user hasn't chosen one (or invoke the project-namer skill)

Ask the user: "Here's the proposed design. What adjustments?"

Phase 3: Plan

Goal: Create an executable implementation plan.

  1. Write a plan file to the repo (.claude/plans/[project-name].md or a location the user specifies)
  2. The plan should include:

- Goal: One-sentence summary - Scope: What's in v1, what's deferred - Steps: Numbered implementation steps with clear deliverables - File structure: Expected project layout - Dependencies: Key libraries to use - Test strategy: What to test and how

  1. Keep the plan concise — under 100 lines. The plan is a contract, not a design doc.

Ask the user: "Plan is ready. Proceed with implementation?"

Phase 4: Scaffold & Build

Goal: Get to a working MVP.

  1. Initialize project:

- Create directory structure - Initialize module/package (go mod init, npm init, etc.) - Set up linting and formatting config - Create.gitignore

  1. Implement core features: Work through plan steps in order

- Write tests alongside implementation (not after) - Commit at logical checkpoints - If a step gets complex, break it down further

  1. Verify: Run the full test suite, lint, and build before moving on

Phase 5: Polish & Document

Goal: Make the tool usable by others.

  1. README: Write a README with:

- Clear description and tagline - Installation instructions - Quick start / usage examples - Configuration reference (if applicable)

  1. CLI help: Ensure all commands have proper help text and examples
  2. License: Add an appropriate license file (default: MIT unless user specifies)
  3. Final review: Run a quick scan:

- go vet / eslint / equivalent for the language - Check for hardcoded paths or secrets - Verify README matches actual CLI interface

Adapting the Workflow

  • If the user already researched: Skip Phase 1, start at Phase 2
  • If the user has a plan: Skip to Phase 4
  • If the user wants just research: Stop after Phase 1
  • If adding to existing project: Skip scaffolding in Phase 4, focus on the new feature

Tips

  • Prefer simplicity in v1. The user can always add features later.
  • For CLI tools, the user prefers Go with cobra/viper patterns.
  • Always verify with web search before recommending libraries — check for maintenance status and compatibility.
  • Use conventional commits during implementation.
  • Don't over-engineer: no feature flags, no plugin systems, no config file formats beyond what's needed for v1.

Examples

Example 1: CLI tool from idea

User: "I want to build a CLI tool for Slack using Go"
Action:
1. Research existing Slack CLI tools (slackcli, etc.)
2. Research Slack API capabilities
3. Brainstorm: core commands (messages, channels, search)
4. Plan: write implementation plan
5. Build: scaffold Go project, implement core commands
6. Document: write README with install + usage

Example 2: Research only

User: "I'm thinking of creating some linter. Research if there's anything similar."
Action:
1. Search for existing linters in the relevant space
2. Compare features, limitations, maintenance status
3. Present findings and recommendation
4. Stop — wait for user to decide next steps

Example 3: Tool with external API

User: "I want to create a Fireflies CLI"
Action:
1. Research Fireflies API docs, authentication, endpoints
2. Research existing Fireflies integrations
3. Design: core features (list meetings, get transcript, action items)
4. Plan and build with API client as foundation

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.15%
按下载量换算27

Claude

30.81%
按下载量换算23

Cursor

19.85%
按下载量换算15

Gemini CLI

11.04%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills