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

greenfieldgreenfield 搜索

Agent Skill

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

总安装

282

周安装

12

GitHub Stars

6

下载量

99
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

用于查找、检索和筛选相关信息。greenfield 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合根据关键词或任务场景快速定位候选结果。
  • 可结合原始 README 进一步验证具体功能和使用方法。
  • 安装前建议确认权限范围和维护状态,避免意外执行命令。
  • 安装方式:通过 GitHub 仓库安装,支持 Codex、Claude 等宿主。

SKILL.md

MANDATORY IMPORTANT MUST ATTENTION use TaskCreate to break ALL work into small tasks BEFORE starting. MANDATORY IMPORTANT MUST ATTENTION use AskUserQuestion at EVERY stage — validate decisions before proceeding. MANDATORY IMPORTANT MUST ATTENTION NEVER ask tech stack upfront — business analysis and domain modeling first.

Quick Summary

Goal: Guide greenfield project inception from raw idea to an approved, implementable project plan using a full waterfall process.

Workflow (16 steps):

  1. Discovery (/idea) — Interview user about problem, vision, constraints, team skills, scale. DO NOT ask about tech stack — keep business-focused.
  2. Market Research (/web-research) — WebSearch for competitors, market landscape, existing solutions
  3. Deep Research (/deep-research) — WebFetch top sources, extract key findings
  4. Business Evaluation (/business-evaluation) — Viability assessment, risk matrix, value proposition
  5. Domain Analysis & ERD (/domain-analysis) — Bounded contexts, aggregates, entities, ERD diagram, domain events. Validate every context boundary with user.
  6. Tech Stack Research (/tech-stack-research) — Derive technical requirements from business + domain analysis. Research top 3 options per stack layer (backend, frontend, database, messaging, infra). Detailed pros/cons matrix, team-fit scoring, market analysis. Present comparison report for user to decide.
  7. Architecture Design (/architecture-design) — Research and compare top 3 architecture styles (Clean, Hexagonal, Vertical Slice, etc.). Evaluate design patterns (CQRS, Repository, Mediator). Audit against SOLID, DRY, KISS, YAGNI. Validate scalability, maintainability, IoC, technical agnosticism. Present comparison with recommendation.
  8. Implementation Plan (/plan) — Create phased plan using confirmed tech stack + architecture + domain model
  9. Security Audit (/security) — Review plan for OWASP Top 10, auth patterns, data protection concerns
  10. Performance Audit (/performance) — Review plan for performance bottlenecks, scalability, query optimization
  11. Plan Review (/plan-review) — Full plan review, risk assessment, approval
  12. Refine to PBI (/refine) — Transform idea + reviewed plan into actionable PBI with acceptance criteria
  13. User Stories (/story) — Break PBI into implementable user stories
  14. Plan Validation (/plan-validate) — Interview user with critical questions to validate plan + stories
  15. Test Strategy (/tdd-spec) — Test pyramid, frameworks, spec outline
  16. Workflow End (/workflow-end) — Clean up, announce completion

Key Rules:

  • PLANNING ONLY: never implement code
  • Every stage saves artifacts to plan directory
  • MANDATORY IMPORTANT MUST ATTENTION every stage requires AskUserQuestion validation before proceeding
  • Delegate architecture decisions to solution-architect agent
  • Present 2-4 options for every major decision with confidence %
  • Business-First Protocol: Tech stack is NEVER asked upfront. Business analysis (steps 1-5) + domain modeling (step 6) must complete first. Tech stack is derived from requirements through research and presented as a comparison report with options.
  • MANDATORY IMPORTANT MUST ATTENTION architecture design and scaffold steps MUST ATTENTION include code quality gate tooling setup — linter, static analyzer, formatter, pre-commit hooks, CI quality gates, and build-time enforcement are NON-SKIPPABLE infrastructure.

Entry Point

This skill is the explicit entry point for the greenfield-init workflow.

When invoked:

  1. Activate the greenfield-init workflow via /workflow-start greenfield-init
  2. The workflow handles step sequencing, task creation, and progress tracking
  3. Each step delegates to the appropriate skill (idea, web-research, domain-analysis, tech-stack-research, etc.)
  4. The solution-architect agent provides architecture guidance throughout

When to Use

  • Starting a brand-new project from scratch
  • No existing codebase (empty project directory)
  • Planning a new application before writing any code
  • Want structured waterfall inception with user collaboration at every step

When NOT to Use

  • Existing codebase with code (use /plan or /feature instead)
  • Bug fixes, refactoring, or feature implementation
  • Quick prototyping (use /cook-fast instead)

Output

All artifacts saved to plan directory:

plans/{id}/
  research/
    discovery-interview.md
    market-research.md
    deep-research.md
    business-evaluation.md
    domain-analysis.md
    tech-stack-comparison.md
    architecture-design.md
  phase-01-domain-model.md
  phase-02-tech-stack.md
  phase-02b-architecture.md
  phase-03-project-structure.md
  phase-04-test-strategy.md
  phase-05-backlog.md
  plan.md (master plan with YAML frontmatter)

After completion, recommend next step: /cook to scaffold the project structure.

Be skeptical. Apply critical thinking, sequential thinking. Every claim needs traced proof, confidence percentages (Idea should be more than 80%).


MANDATORY IMPORTANT MUST ATTENTION break work into small todo tasks — one per workflow step. MANDATORY IMPORTANT MUST ATTENTION validate with user at EVERY step — never auto-decide. MANDATORY IMPORTANT MUST ATTENTION add a final review todo task to verify work quality and identify fixes/enhancements.


Closing Reminders

  • MANDATORY IMPORTANT MUST ATTENTION break work into small todo tasks using TaskCreate BEFORE starting
  • MANDATORY IMPORTANT MUST ATTENTION search codebase for 3+ similar patterns before creating new code
  • MANDATORY IMPORTANT MUST ATTENTION cite file:line evidence for every claim (confidence >80% to act)
  • MANDATORY IMPORTANT MUST ATTENTION add a final review todo task to verify work quality

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.92%
按下载量换算36

Claude

30.17%
按下载量换算30

Cursor

20.26%
按下载量换算20

Gemini CLI

10.81%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills