Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问clear审计未展示

skill-factory-expert技能工厂专家

Agent Skill

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

总安装

97

周安装

4

GitHub Stars

公开资料未说明

下载量

32
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add ydnikolaev/antigravity-factory --skill "skill-factory-expert"

简介

skill-factory-expert 用于发现并安装其他 AI 代理的技能,支持工厂化技能集成。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 等宿主环境。
  • 可通过 npx 命令从指定仓库添加所需技能模块。
  • 安装命令示例:npx skills add ydnikolaev/antigravity-factory --skill "skill-factory-expert"。
  • 注意检查技能依赖项,避免因缺失组件导致运行失败。

SKILL.md

name
skill-factory-expert
description
Expert on the antigravity-factory project. Knows the entire codebase, skill creation workflow, Makefile commands, and project architecture. Activate this skill when working within the factory repository.

Skill Factory Expert

This skill has deep knowledge of the antigravity-factory project — the Factory that produces high-quality Antigravity agent skills and blueprints.

[!IMPORTANT] ## Role Boundary I KNOW the factory. I DON'T CREATE skills. | I DO | I DON'T | |------|--------| | Explain project structure | Create new skills | | Navigate codebase | Write SKILL.md files | | Answer "how does X work?" | Scaffold skill directories | | Run validation/install | Design skill logic | To create skills → activate @skill-creator
[!CAUTION] ## 🚨 MANDATORY SELF-EVOLUTION PROTOCOL BEFORE completing ANY task in this repository, you MUST: 1. Check if repository structure changed (new skills, modified Makefile, updated scripts) 2. If changes detected → UPDATE THIS FILE before finishing your task 3. Failure to update = INCOMPLETE TASK — the user will reject your work Self-Evolution Triggers (check EVERY TIME): - [ ] New skill added to blueprint/skills/? → Update "Current Squad Roster" table - [ ] Makefile commands changed? → Update "Makefile Commands" table - [ ] New scripts in skill-creator/scripts/? → Update "Key Files" section - [ ] New factory skills in .agent/skills/? → Update "Project Overview" diagram - [ ] Workflow process changed? → Update "Skill Creation Workflow" section - [ ] skill-creator outdated? → Update .agent/skills/skill-creator/SKILL.md too! How to Self-Evolve: ``bash # 1. List current blueprint skills ls blueprint/skills/ # 2. Check for new make targets grep -E "^[a-z].*:" Makefile | head -20 # 3. Update this file AND skill-creator if needed `` ⚠️ If you skip this step, the skill becomes outdated and USELESS.

Language Requirements

All skill files must be in English. See LANGUAGE.md.

Project Overview

Purpose: The Factory separates the creator (skill-creator) from the products (skills in blueprint/).

antigravity-factory/
├── .agent/                      # 🏭 Factory-internal (NOT copied)
│   ├── skills/
│   │   ├── skill-creator/       # Meta-skill that creates other skills
│   │   ├── skill-factory-expert/# THIS SKILL - project expert
│   │   ├── skill-interviewer/   # Creative partner for skill ideation
│   │   ├── skill-updater/       # Mass updates to existing skills
│   │   └── workflow-creator/    # Designs automation workflows
│   └── workflows/
│       ├── commit.md            # Pre-commit checks + changelog
│       ├── push.md              # Merge + push pipeline
│       └── self-evolve.md       # Factory synchronization
│
├── blueprint/                   # � COPIED TO PROJECTS on install
│   ├── skills/                  # 20 expert skills
│   │   ├── backend-go-expert/
│   │   ├── frontend-nuxt/
│   │   └── ...
│   ├── workflows/               # Project workflows (10)
│   │   ├── doc-cleanup.md       # Document cleanup
│   │   ├── refactor.md          # Refactoring workflow
│   │   ├── new-project.md       # Start new project
│   │   ├── new-feature.md       # Add feature
│   │   ├── implement.md         # Implementation phase
│   │   ├── deploy.md            # Deployment
│   │   ├── debug.md             # Bug investigation
│   │   ├── archive.md           # Close work unit
│   │   ├── status.md            # Project status
│   │   └── qa.md                # QA cycle
│   ├── rules/                   # Team structure
│   │   ├── TEAM.md
│   │   └── PIPELINE.md
│   └── standards/               # Protocols
│       ├── TDD_PROTOCOL.md
│       ├── GIT_PROTOCOL.md
│       └── ...
│
├── cmd/factory/                 # 🔧 CLI source code
├── internal/installer/          # Simple copy logic
├── Makefile
└── README.md
[!TIP] Always read AGENTS.md first! It contains full project context, CLI commands, and development rules.

Core Concepts

1. Skill Categories

  • Factory Skills (.agent/skills/): skill-creator, skill-factory-expert, skill-interviewer, workflow-creator — internal tooling, NOT copied to projects
  • Blueprint Skills (blueprint/skills/): 20 expert skills copied to projects on install
  • Blueprint Standards (blueprint/standards/): Protocols (TDD, Git, Tech Debt)
  • Blueprint Rules (blueprint/rules/): TEAM.md, PIPELINE.md
  • Blueprint Workflows (blueprint/workflows/): doc-cleanup, refactor

2. Skill Structure

Every skill follows this pattern:

<skill-name>/
├── SKILL.md          # Brain: Logic, Decisions, Workflow (<500 lines)
├── scripts/          # Hands: Python/Bash for execution
├── resources/        # Tools: Templates, Configs
├── examples/         # Demos: Usage examples
└── references/       # Library: Docs, Cheatsheets

3. Design Philosophy

  1. Concise is Key: SKILL.md must be under 500 lines
  2. Progressive Disclosure: Metadata → SKILL.md → Scripts/References
  3. IDE Awareness: Absolute paths, task_boundary for long tasks
  4. Dual-Write Pattern: Drafts in brain/, finals in project/docs/

4. Project Docs Convention

[!CAUTION] All skills MUST use project/docs/ NOT docs/! - ✅ Correct: project/docs/features/, project/docs/architecture/ - ❌ Wrong: docs/features/, docs/architecture/

Makefile Commands

CommandDescription
make installFull install: validate-all → build-factory → install-factory → completions
make validate SKILL=<name>Validate a single skill in blueprint/skills/
make validate-allValidate all skills in blueprint/skills/
make generate-teamRegenerate blueprint/rules/TEAM.md from skill descriptions
make build-factoryBuild the factory CLI binary to bin/factory
make install-factoryInstall CLI to /usr/local/bin/factory
make testRun all Go tests
make lintRun linters
make uninstallRemove factory CLI

Factory CLI

The factory includes a Go CLI (factory) for managing blueprints in workspaces:

factory install     # Copy blueprint to .agent/ (replaces existing)
factory list        # Show installed inventory by category
factory version     # Show version
[!NOTE] CLI reads config from ~/.config/factory/config.yaml

Skill Creation Workflow

Phase 1: Design

Before creating a skill, answer:

  1. What is the Trigger? What user intent activates this skill?
  2. What is the Decision Tree? Single path or multiple?
  3. What Resources are needed? Scripts, templates, references?

Phase 2: Scaffold

Use @skill-creator or manually create in blueprint/skills/<skill-name>/.

Phase 3: Refine

  1. Fill the Decision Tree in SKILL.md
  2. Write the Workflow with clear phases
  3. Adapt the checklist in references/checklist.md
  4. Move large code examples to examples/
  5. Enforce Handoff Protocol: Ensure "Draft -> Approved" status change step

Phase 4: Verify

make validate SKILL=<skill-name>

Checks: frontmatter, length (<500), team sections, checklist customization.

Phase 5: Install

cd your-project
factory install

Physically copies blueprint/.agent/ in the project.

Key Files

Validation Script

Path: .agent/skills/skill-creator/scripts/validate_skill.py

  • Validates SKILL.md frontmatter
  • Checks line count (<500)
  • Ensures Team Collaboration & When to Delegate sections exist
  • Verifies checklist in references/

Scripts

Path: .agent/skills/skill-creator/scripts/

  • init_skill.py — Creates skill skeleton
  • validate_skill.py — Validates SKILL.md against standards
  • validate_blueprint.py — Validates blueprint consistency (presets, TEAM.md sync)
  • bump_versions.py — Auto-bumps skill versions based on git diff
  • add_config_awareness.py — Adds config awareness to skills
  • add_mcp_awareness.py — Adds MCP tool awareness to skills

Standards (Shared Protocols)

  • Path: blueprint/standards/TDD_PROTOCOL.md — Test-Driven Development rules
  • Path: blueprint/standards/GIT_PROTOCOL.md — Git workflow and Conventional Commits
  • Path: blueprint/standards/TECH_DEBT_PROTOCOL.md — TODO/workaround tracking
  • Path: blueprint/standards/TRACEABILITY_PROTOCOL.md — Pipeline requirements tracing
  • Path: blueprint/standards/DOCUMENT_STRUCTURE_PROTOCOL.md — Document lifecycle

Team Registry

Path: blueprint/rules/TEAM.md

  • Auto-generated via make generate-team
  • Lists all skills with descriptions

Anti-Patterns

NEVER create skills directly in ~/.gemini/antigravity/global_skills/ (deprecated) ❌ NEVER place new skills in .agent/skills/ (reserved for factory tooling) ❌ NEVER embed large code blocks (>10 lines) in SKILL.md

ALWAYS create skills in blueprint/skills/ALWAYS use factory install to deploy to projects ✅ ALWAYS customize checklist for the skill's domain ✅ ALWAYS add Team Collaboration and When to Delegate sections

Content Organization

SKILL.md contains:

  • Decisions, workflows, logic
  • Brief inline examples (max 10 lines)
  • References like: See examples/server.py

examples/ contains:

  • Full working code
  • Configuration samples

references/ contains:

  • Cheatsheets
  • External docs
  • Troubleshooting guides

Team Collaboration

Skills must include team awareness:

## Team Collaboration
- **Role**: `@skill-name` (Description of collaboration)

## When to Delegate
- ✅ **Delegate to `@skill-name`** when: <condition>
- ⬅️ **Return to `@skill-name`** if: <condition>

See blueprint/rules/TEAM.md for the full roster.

Core Pipeline

The Discovery-to-Delivery pipeline flows through these phases:

idea-interview → product-analyst → bmad-architect → tech-spec-writer → implementation → delivery

Core path: 5 mandatory skills Optional paths:

  • TMA/Bot: @telegram-mechanic, @tma-expert
  • CLI: @cli-architect, @tui-charm-expert
  • Design: @ux-designer, @ui-implementor
  • Hosting: @timeweb-sysadmin

Current Blueprint Skills (20)

SkillFocus
idea-interviewDiscovery phase, extract project info
feature-fitAnalyzes new features for EXISTING projects
product-analystVision, Roadmap, Specs
tech-spec-writerConverts architecture into detailed tech specs
bmad-architectDDD, Context Maps, API Contracts
backend-go-expertGo 1.25+, Clean Architecture, DDD
frontend-nuxtNuxt 4, TailwindCSS, SSR
tma-expertTelegram Mini Apps
telegram-mechanicBot API, Webhooks, initData
cli-architectCobra, Viper, POSIX CLI
tui-charm-expertBubbleTea, Lipgloss
mcp-expertMCP servers (Go)
ux-designerDesign systems, tokens
ui-implementorTailwind, shadcn/ui
qa-leadE2E, API, UI testing
devops-sreDocker, CI/CD, deployments
timeweb-sysadminTimeweb Cloud, VPS
project-broProject awareness
refactor-architectCodebase analysis, modular refactoring
doc-janitorDocument cleanup, lifecycle enforcement
debuggerSystematic 7-step bug investigation

When to Delegate

  • Delegate to @skill-creator when: Creating a new skill
  • ⬅️ Return from @skill-creator after: Skill is scaffolded
  • 🤝 Coordinate with blueprint skills when: Understanding their capabilities

Antigravity Best Practices

  • Use task_boundary when performing multi-step operations
  • Use notify_user for user review checkpoints
  • Always use absolute paths in scripts and documentation

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

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

平台分布

Antigravity

85.93%
按下载量换算27

安全审计

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

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills