Token导航 LogoToken导航TokenDH.com
开发需要联网clawhub未标认证来源可访问clear审计通过

skill-architect技能建筑师

Agent Skill

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

总安装

5,562

周安装

225

GitHub Stars

公开资料未说明

下载量

1,746
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:skill-architect(技能建筑师)
来源仓库:https://github.com/vincent-hq/skill-architect
安装命令:
openclaw skills install skill-architect
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install skill-architect

简介

用于设计和创建结构规范的人工智能技能模板。skill-architect 属于开发类 Skill,可作为该场景下的辅助能力补充。

  • 帮助构建符合标准格式的 AI 技能,提升开发效率。
  • 可与 Claude Code、Google Antigravity 等编码工具集成使用。
  • 通过 clawhub 安装,需确认本地开发环境兼容性。
  • 建议参考官方文档了解具体集成方式和输出格式要求。

SKILL.md

name
skill-architect
description
Design and create new AI skills with the right internal structure — not just correct formatting. Works with any AI coding tool (Claude Code, Google Antigravity, Cursor, Windsurf, Cline, GitHub Copilot, etc.). Use this skill when someone wants to build a new skill and wants it to be well-structured from the ground up. Triggers on: "create a skill", "build a skill", "make a skill for X", "help me write a skill", "I want a skill that does X", "design a skill". Unlike a generic skill creator, skill-architect interviews you first to understand how the skill needs to work, then applies the right design pattern (Tool Wrapper, Generator, Reviewer, Inversion, Pipeline, or combinations) before writing a single line — so the skill behaves correctly, not just looks correct.

Skill Architect

A skill for creating new AI skills that are structurally sound — not just syntactically correct. Works with any AI coding tool — Claude Code, Google Antigravity, Cursor, Windsurf, Cline, GitHub Copilot, and more.

Most skill-creation guides focus on format: how to write SKILL.md, what goes in frontmatter, how to organize directories. This skill focuses on design: before writing anything, we figure out what shape the skill's internal logic should take, using Google's 5 Agent Skill Design Patterns as a framework.

The core loop:

  1. Understand the intent — what does the user want this skill to do?
  2. Interview — ask targeted questions to reveal the underlying structure
  3. Classify — propose one or more patterns with reasoning, confirm with user
  4. Scaffold — build the SKILL.md from the appropriate pattern template
  5. Test & iterate — follow the standard skill-creator eval loop (or test manually in your environment)

Phase 1: Capture Intent

Start by understanding the user's goal at a high level. Extract from context first — they may have already described what they want.

Ask only what you don't already know:

  • What should this skill enable Claude to do?
  • When should it trigger? What kinds of user requests?
  • What does a good output look like?

Don't ask all of these at once if the answer is already clear from context. Keep it conversational.

When the user suggests a specific pattern: Treat it as a data point, not a decision. Acknowledge what they said ("I see you're thinking Pipeline"), then proceed to Phase 2 as normal. Do NOT accept the pattern and skip to scaffolding — the interview must still happen. The user's pattern suggestion often reveals useful information about how they think about their problem, but the final recommendation should come from the diagnostic questions, not from the user's self-diagnosis.

Transition rule: If the user has already described their goal and pain point clearly, move directly to Phase 2. Do not ask follow-up questions about domain, use case type, or other details that don't affect pattern selection. A description like "I want a skill to help me write client proposals — I always spend too much time organizing the structure" is enough to enter Phase 2 immediately.


Phase 2: Pattern Interview

This is the key step that distinguishes this skill from a generic skill creator.

Before proposing any pattern, ask targeted questions to understand the skill's internal logic. The goal is to reveal *how* the skill needs to work — not just what it produces.

Critical rules:

  • Ask one question at a time. Wait for the answer before asking the next. This is a conversation, not a form.
  • Stop as soon as you have enough information to classify — usually 2 questions is enough, rarely more than 3.
  • Only ask questions that affect pattern selection. Questions about existing examples, preferred formats, or style details belong in Phase 4 (scaffolding), not here.
  • Never re-confirm information the user already stated explicitly. If the user said "each step needs my confirmation before continuing", do not ask "so you need confirmation between steps?" — treat it as established fact and ask questions that reveal *new* information. Restating what the user said as a question wastes your 2-3 question budget and signals you weren't listening.
  • Before asking your first question, mentally inventory which pattern signals are already present in the user's description. Common signals:

- "consistent format every time" / "same structure" → Generator - "first... then... next... finally" + "must confirm before continuing" → Pipeline - "compare" / "analyze against" / "improvement recommendations" → Reviewer - "need to clarify first" / "different for each client" → Inversion - Mentions a specific API, SDK, or framework → Tool Wrapper Then only ask questions that would resolve the *remaining* ambiguity — don't ask about signals you've already identified.

The core diagnostic questions (pick the most relevant, one at a time):

  1. Does this skill need to collect information from the user *before* it can do anything useful? Or can it act immediately on what's given?
  2. Does the output need to follow a consistent structure every single time — same sections, same format?
  3. Is there a sequence of steps where step N genuinely can't start until step N-1 is complete and confirmed?
  4. Is this about wrapping a specific tool, API, or framework — making sure Claude uses it correctly?
  5. Does this skill need to evaluate, compare, or critique something — whether against a defined standard, a baseline, or another input (e.g., competitor analysis, gap analysis)?

If an answer is ambiguous, ask one clarifying follow-up before moving on — but stay focused on pattern classification, not implementation details.

Common misclassifications to watch for:

  • "Has steps" ≠ Pipeline. Pipeline requires that each step has a gate — the previous step must be confirmed correct before the next can begin, because errors propagate. If the steps can run automatically without intermediate confirmation, it's probably Generator or Inversion → Generator.
  • "Asks the user questions" ≠ Inversion. Inversion means the skill *cannot act at all* without first collecting specific information. If the skill can produce a reasonable default and then refine, that's not Inversion.
  • "Checks quality" ≠ Reviewer. Reviewer means evaluating against a *defined, external standard or checklist*. If the skill just does a general quality pass, that's normal good behavior, not the Reviewer pattern.

These questions do NOT belong in Phase 2 — they are Phase 4 (scaffolding) questions:

  • What output format do you want? (Markdown, Word, PPTX...)
  • Do you have an existing example or template I can reference?
  • What domain or industry is this for?
  • What tone or style do you prefer?
  • How long should the output be?

Asking these in Phase 2 delays pattern selection without adding any useful signal. Save them for after the pattern is confirmed.


Phase 3: Pattern Classification

Once you have enough information, propose a pattern (or combination). Always explain your reasoning — don't just name a pattern.

Read references/patterns.md for the full definition of each pattern, their decision criteria, combination rules, and common mistakes.

The 5 patterns:

PatternCore question it answers
Tool WrapperHow should Claude use this specific API/framework correctly?
GeneratorHow do we ensure consistent, template-driven output every time?
ReviewerHow do we evaluate something against a defined standard?
InversionWhat information must we collect before we can act?
PipelineWhat sequence of steps must happen in order, with gates?

How to present your recommendation:

Based on what you've described, I'd suggest: [Pattern(s)]

Here's my reasoning:
- [Specific thing the user said] → suggests [Pattern] because [why]
- [Another signal] → rules out [Pattern] because [why]

This means the skill will [brief description of how it will behave].

Does this match what you had in mind, or does something feel off?

When your recommendation differs from the user's original suggestion, add a comparison block that explains the difference concretely:

You mentioned [Pattern X]. Here's how it compares to what I'm suggesting:

- [Pattern X] is designed for [core characteristic] — e.g., [example scenario where X is the right fit]
- Your skill [specific observation from interview] — which is closer to [Pattern Y] because [reason]
- The practical difference: with [X], your skill would [behavior]. With [Y], it would [behavior].

If you still prefer [X], I can make it work — here's what that version would look like: [brief sketch].

This isn't about proving the user wrong. It's about giving them the information to make an informed choice. Always offer to proceed with their original suggestion if they prefer.

Give the user a clear path to push back. Common responses:

  • "Yes, that makes sense" → proceed to scaffolding
  • "I'm not sure" → offer to walk through the pattern definitions together
  • "I think it's more like X" → update your recommendation and re-explain

Patterns can and should be combined. See references/patterns.md for combination guidance.


Phase 4: Scaffold the Skill

Once the pattern is confirmed, load the corresponding template from references/templates/ and use it as the structural backbone for the SKILL.md.

Template files:

  • references/templates/tool-wrapper.md
  • references/templates/generator.md
  • references/templates/reviewer.md
  • references/templates/inversion.md
  • references/templates/pipeline.md
  • references/templates/combined.md — for multi-pattern skills

Fill in the template with everything you've learned in the interview. Don't leave placeholder text — by this point you should have enough to write a real first draft.

Always produce the full directory structure, not just SKILL.md. Each pattern has required companion files:

skill-name/
├── SKILL.md              ← flow logic only; references companion files by name
├── references/           ← rules, standards, checklists — things that change independently
└── assets/               ← output skeletons, templates the skill fills in

Pattern-specific structure requirements:

  • Generator: SKILL.md must reference references/style-guide.md (tone, voice, formatting rules) and assets/[output]-template.md (the structural skeleton). Never inline the template or style rules into SKILL.md — they must live in separate files so they can be updated without touching the skill logic.
  • Reviewer: SKILL.md must reference references/review-checklist.md. The checklist lives outside SKILL.md so the review criteria can evolve independently.
  • Tool Wrapper: SKILL.md must reference references/conventions.md. The API/framework rules belong in the reference file.
  • Pipeline: Load step-specific references at the step that needs them, not all upfront. Each step should name the file it loads.
  • Inversion: No required companion files, but if it hands off to Generator or Pipeline, those patterns' structure requirements apply to the downstream stage.

This separation is the whole point of the pattern system — when a team changes their changelog format or updates their review checklist, they edit one file, not the skill itself.

Quality checks before output: Every pattern that produces output (Generator, Pipeline's final step, Inversion → Generator's generation phase) must include an explicit quality check step before presenting results to the user. Use a checkbox-style checklist that verifies:

  • Every template section is present and filled (no placeholders remain)
  • Tone and formatting match the style guide
  • Content is internally consistent (no contradictions between sections)
  • All user-provided inputs are reflected in the output

This step catches structural gaps before the user sees the result. Do not skip it — even for simple skills.

SKILL.md content rule: SKILL.md describes *what to do and when to load which file*. It does not contain the actual templates, checklists, or domain rules. If you find yourself writing a long table of rules or a markdown template inside SKILL.md, stop and move it to a companion file.

Keep SKILL.md under 500 lines. The description field is the primary triggering mechanism — write it to describe both what the skill does AND the specific contexts where it should fire. Make it slightly "pushy" so the skill doesn't undertrigger.


Phase 5: Test & Iterate

Follow the standard skill-creator eval loop:

  1. Write 2–3 realistic test prompts — the kind of thing a real user would actually type
  2. Share them with the user for confirmation before running
  3. Run the prompts and evaluate results qualitatively
  4. Improve based on feedback, repeat

Environment-specific guidance:

  • Claude Code / Cowork: spawn subagents for parallel runs, use the eval viewer, run quantitative assertions.
  • Claude.ai: run test cases manually one at a time, present results inline, ask for feedback conversationally. Skip quantitative benchmarking.
  • Cursor / Windsurf / Cline / other tools: run test prompts manually in a new conversation or session. Paste the generated SKILL.md as custom instructions, then test with realistic prompts. Evaluate results conversationally and iterate.

After the skill is in good shape, offer to optimize the description field for better triggering accuracy.


Principles

The pattern is a scaffold, not a cage. Use it to establish the skill's structural logic, then adapt to the user's actual needs. A skill that perfectly fits a template but doesn't solve the problem is worthless.

Explain the why behind every design choice. When you write the SKILL.md, don't just give instructions — explain to the future Claude why each step matters. Smart models follow reasoning better than rules.

The interview is the most important part. Rushing to pattern selection without enough information leads to wrong pattern choices, which leads to skills that look correct but behave oddly. The 2–3 questions in Phase 2 are load-bearing — don't skip them.

Combinations are normal. Real-world skills often need two patterns. Inversion → Generator is especially common. Pipeline + Reviewer is another. Don't feel pressure to pick exactly one.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

71.98%
按下载量换算1,257

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills