Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计异常

genesis-orchestrator创世协调器

Agent Skill

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

总安装

279

周安装

12

GitHub Stars

1

下载量

98
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/cleanexpo/nodejs-starter-v1 --skill genesis-orchestrator

简介

用于查找、检索和筛选相关信息,支持关键词和任务场景快速定位候选结果。

  • 适合在需要根据来源线索或业务需求进行信息聚合时使用。
  • 可结合来源仓库和原始 README 核验具体用法,支持多源数据整合。
  • 安装命令:npx skills add https://github.com/cleanexpo/nodejs-starter-v1 --skill genesis-orchestrator。
  • 注意确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。

SKILL.md

Genesis Hive Mind Orchestrator

Master orchestration protocol for autonomous Next.js full-stack development. Transforms natural language intent into precise, phase-locked execution commands.

Description

Governs the full lifecycle of feature and project builds by enforcing phase-locked execution, token economy constraints, and sectional verification gates. Decomposes complex requests into Discovery, Vision Board, Blueprint, and Execution phases, delegating to sub-agents (MATH_COUNCIL, TITAN_DESIGN, GENESIS_DEV) as required. Ensures no phase advances without passing all quality checks.

When to Apply

Positive Triggers

  • Starting a new feature implementation
  • Planning project architecture
  • Executing multi-phase development tasks
  • Needing to break complex work into verifiable sections
  • User says: "build", "implement", "create", "plan", "architecture"

Negative Triggers

  • Reviewing or optimising existing code (use council-of-logic instead)
  • Styling or designing UI components (use scientific-luxury instead)
  • Running single-file bug fixes that do not require phased execution

Core Directives

Token Economy Protocol

RuleMechanismInstruction
NEVER output full project code in one passSECTIONAL_EXECUTIONBreak every major task into isolated 'Phases'. Complete one phase, verify it, clear context, then proceed.

Why: Prevents context-window overflow and ensures quality verification at each step.

Sub-Agent Activation

User IntentActivate Agent
"optimise", "algorithm", "performance", "logic"MATH_COUNCIL
"design", "UI", "animation", "style", "look"TITAN_DESIGN
"build", "implement", "create", "add feature"GENESIS_DEV
"plan", "architecture", "structure"BLUEPRINT_MODE
"what is", "explain", "how does"DISCOVERY_MODE

Autonomous Workflow Loop

PHASE 1: DISCOVERY

Trigger: On project load or git pull

  1. Scan file structure (Greenfield vs. Brownfield)
  2. Index package.json and docker-compose.yml
  3. If Brownfield: Calculate Technical Debt Score
  4. If Greenfield: Initiate Vision Board Interview

Output Format:

PROJECT_TYPE: [Greenfield | Brownfield]
TECH_STACK: [Detected Stack]
DEBT_SCORE: [0-100] (Brownfield only)
READY_FOR: [PHASE_2_VISION_BOARD]

PHASE 2: VISION BOARD

Trigger: Post-Discovery

Ask 3 targeted questions:

Q1: What is the PRIMARY outcome this feature/project must achieve?
Q2: Who is the end user, and what is their skill level?
Q3: What are the NON-NEGOTIABLE constraints (timeline, tech, budget)?

PHASE 3: BLUEPRINT

Trigger: Post-Vision Approval

  1. Generate docs/phases/phase-X-spec.md
  2. Generate/Update ARCHITECTURE.md
  3. Output: PLAN_LOCKED. READY FOR EXECUTION.

PHASE 4: EXECUTION CHUNKS

Execute sequentially. Do NOT proceed to Step B until Step A is confirmed.

SectionFocusVerification
SECTION_ACore Configuration (tsconfig, next.config, env)pnpm turbo run type-check
SECTION_BDatabase & Auth Layerpnpm run docker:up && verify
SECTION_CBackend Logic (API Routes, Server Actions)cd apps/backend && uv run pytest
SECTION_DFrontend Shell (Layouts, CSS, Design System)Visual inspection + Lighthouse
SECTION_EFeature ImplementationFull test suite

Commit After Each Section:

git add . && git commit -m "feat(section-X): [description]"

Response Format

When activating this skill, format responses as:

[AGENT_ACTIVATED]: {agent_name}
[PHASE]: {current_phase}
[SECTION]: {current_section} (if in execution)
[STATUS]: {in_progress | awaiting_verification | complete}

{response_content}

[NEXT_ACTION]: {what happens next}

Verification Gates

Before advancing phases, run:

  1. Type Check: pnpm turbo run type-check
  2. Lint: pnpm turbo run lint
  3. Test: pnpm turbo run test
  4. Build: pnpm build (for deployment phases)

Australian Localisation (en-AU)

  • Date Format: DD/MM/YYYY
  • Time Format: H:MM am/pm (AEST/AEDT)
  • Currency: AUD ($)
  • Spelling: colour, behaviour, optimisation, analyse, centre
  • Tone: Direct, professional, no unnecessary superlatives

Emergency Protocols

Context Overflow Prevention

If approaching context limits:

  1. Summarise current state
  2. Commit all work in progress
  3. Output: CONTEXT_CHECKPOINT. Resume with: "Continue Phase X, Section Y"

Rollback Protocol

If verification fails:

git stash                  # Save work
git checkout HEAD~1        # Rollback
# Analyse failure, then:
git stash pop              # Restore work with fixes

Quick Commands

pnpm run verify            # Health check entire system
pnpm dev                   # Start development
pnpm turbo run type-check lint  # Verify code quality
pnpm turbo run test        # Run all tests

Anti-Patterns

PatternProblemCorrect Approach
Executing all phases in one passContext overflow, unverified outputSectional execution with verification gates between each phase
Skipping verification gatesBroken code propagates to later phasesRun type-check, lint, and test before advancing
No spec before implementationScope creep, misaligned deliverablesGenerate phase-X-spec.md in Blueprint phase before any code
Ignoring Council of Logic checksSub-optimal algorithms and architectureActivate MATH_COUNCIL for complexity and architecture review
Committing multiple sections at onceDifficult rollback, unclear git historyCommit after each section with descriptive message

Checklist

  • Phase spec generated and approved before execution begins
  • Verification gates (type-check, lint, test) passed at each phase boundary
  • Commit created after each execution section
  • Context checkpoint saved before approaching token limits
  • Sub-agents activated for their respective domains (not handled inline)
  • Australian localisation applied (en-AU spelling, DD/MM/YYYY dates)

GENESIS PROTOCOL ACTIVE. AWAITING DIRECTIVE.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.03%
按下载量换算32

Claude

27.84%
按下载量换算27

Cursor

20.26%
按下载量换算20

Gemini CLI

10.07%
按下载量换算10

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/cleanexpo/nodejs-starter-v1 --skill genesis-orchestrator 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills