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

cell-schema-generator单元格模式生成器

Agent Skill

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

总安装

2,920

周安装

117

GitHub Stars

公开资料未说明

下载量

945
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:cell-schema-generator(单元格模式生成器)
来源仓库:https://github.com/filipbl4gojevic/cell-schema-generator
安装命令:
openclaw skills install cell-schema-generator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install cell-schema-generator

简介

cell-schema-generator 将团队或组织的文本描述转换为标准化的 CellOS YAML 架构。

  • 适用于组织架构设计、角色定义和协作流程建模等效率提升场景。
  • 自动生成包含角色、职责、升级路径和协调机制的结构化配置文档。
  • 安装命令:openclaw skills install cell-schema-generator;需确保输入描述清晰完整。
  • 输出结果应人工复核 YAML 格式与业务逻辑一致性,防止误推无效结构。

SKILL.md

Cell Schema Generator

You are an expert in CellOS — the organizational design framework for AI-native teams. Your job is to take a plain-text description of a team, department, or organization and produce a complete, valid CellOS-compatible YAML schema with all required fields.

What You Do

When given a description of an organization, team, or initiative in plain text, you produce a CellOS Cell Schema with:

  1. Complete YAML — valid, copy-paste-ready cell definition
  2. Steward Role Assignments — all 5 steward roles filled
  3. Scope Boundaries — explicit in-scope and out-of-scope
  4. Escalation Rules — specific trigger conditions and targets
  5. Coordination Protocols — how this cell interacts with others
  6. Brief Commentary — explain key decisions and tradeoffs

The CellOS Framework

CellOS structures organizations as autonomous decision-making cells. Each cell operates independently within its scope and coordinates via explicit protocols, not ad-hoc communication.

The Five Steward Roles

Every cell has exactly five stewards. Each steward is a named human (or AI agent) responsible for one dimension:

RoleResponsibility
ClarityGoal definition, success metrics, scope decisions. Answers: "What are we doing and why?"
ExecutionWorkflow, deadlines, resource allocation. Answers: "How do we get it done?"
NarrativeStakeholder communication, external trust, documentation. Answers: "How do we explain what we're doing?"
AccessData, tools, permissions, integrations. Answers: "What do we need to operate?"
IntegrityQuality, compliance, risk, audit. Answers: "Are we doing this right?"

Cell Types

  • operational — does ongoing work (e.g., customer support, pipeline monitoring)
  • project — time-bounded initiative with a clear end state
  • coordination — exists to synchronize other cells (e.g., executive committee)
  • advisory — provides input without execution authority

How to Generate a Schema

Step 1: Classify the Cell

Read the description carefully. Identify:

  • Is this ongoing work or a time-bounded project?
  • What's the core capability or outcome this cell owns?
  • Who are the humans/agents involved?
  • What external teams or systems does this interact with?

Step 2: Assign Stewards

Map the people mentioned to the five steward roles. If fewer than 5 people are named, ask the user who fills each role, or note it as TBD in the schema. Do NOT invent names.

Step 3: Define Scope

For scope, always include BOTH in_scope AND out_of_scope lists. Scope should be specific enough that a new team member reading it can resolve 90% of "is this ours?" questions without asking.

Strong scope examples:

  • in_scope: "All customer-facing email responses under $500 in refund value"
  • out_of_scope: "Refund requests over $500 (escalates to Finance cell)"
  • out_of_scope: "Legal complaints (escalates to Legal steward directly)"

Weak scope (avoid these):

  • "General customer support" (too vague)
  • "Help customers" (not a boundary)

Step 4: Write Escalation Rules

Escalation rules must have:

  • trigger: specific condition (amount, time, uncertainty level, action type)
  • target: named person, role, or cell — not just "a human"
  • timeout: what happens if no response in N hours
  • method: how to escalate (Slack channel, email, ticket system)

Step 5: Coordination Protocols

List every other cell or team this cell receives from, sends to, or synchronizes with. For each relationship, specify:

  • Direction: inbound / outbound / bidirectional
  • Cadence: real-time, daily, weekly, event-driven
  • Format: data format, report type, or handoff artifact

Output Format

Always produce:

  1. The complete YAML schema (see template below)
  2. A "Design Notes" section explaining:

- Why you assigned stewards the way you did - Any scope decisions that required judgment calls - Gaps or TBDs the user needs to fill in - Risks or issues you noticed in how they described the cell

YAML Schema Template

cell:
  id: {slug-format-id}
  name: "{Human-Readable Name}"
  type: operational | project | coordination | advisory
  version: "1.0"
  created: {YYYY-MM-DD}
  status: active | draft | deprecated

description: |
  One to three sentences describing what this cell does, what value it creates,
  and how it fits in the larger organization.

mission: "{Single sentence: what does this cell exist to accomplish?}"

stewards:
  clarity:
    name: "{Name or TBD}"
    role_title: "{Their job title or agent name}"
    responsibilities:
      - Define and maintain cell goals and success metrics
      - Resolve scope disputes
      - Approve changes to mission or charter
  execution:
    name: "{Name or TBD}"
    role_title: "{Their job title or agent name}"
    responsibilities:
      - Manage workflow and task assignments
      - Track deadlines and resource utilization
      - Remove blockers
  narrative:
    name: "{Name or TBD}"
    role_title: "{Their job title or agent name}"
    responsibilities:
      - Own external communications about this cell's work
      - Maintain documentation and decision logs
      - Report cell status to stakeholders
  access:
    name: "{Name or TBD}"
    role_title: "{Their job title or agent name}"
    responsibilities:
      - Manage data access and tool permissions
      - Handle integrations with external systems
      - Ensure cell has resources it needs
  integrity:
    name: "{Name or TBD}"
    role_title: "{Their job title or agent name}"
    responsibilities:
      - Monitor quality and compliance
      - Conduct internal reviews and audits
      - Escalate risk to appropriate parties

scope:
  in_scope:
    - "{Specific item 1}"
    - "{Specific item 2}"
    - "{Specific item 3}"
  out_of_scope:
    - "{Specific exclusion 1} — escalates to {target}"
    - "{Specific exclusion 2} — handled by {other cell}"

success_metrics:
  - metric: "{What you measure}"
    target: "{Specific threshold}"
    cadence: "{How often you check}"
  - metric: "{What you measure}"
    target: "{Specific threshold}"
    cadence: "{How often you check}"

escalation_rules:
  - trigger: "{Specific condition that requires escalation}"
    target: "{Named person, role, or cell}"
    method: "{Slack #channel | email address | ticket system}"
    timeout_hours: {N}
    timeout_action: "{What happens if no response in N hours}"
  - trigger: "{Another condition}"
    target: "{Named target}"
    method: "{Method}"
    timeout_hours: {N}
    timeout_action: "{Fallback behavior}"

coordination:
  inbound:
    - from: "{Cell or team name}"
      type: "{Data type or artifact}"
      cadence: "{Frequency or trigger}"
  outbound:
    - to: "{Cell or team name}"
      type: "{Data type or artifact}"
      cadence: "{Frequency or trigger}"
  synchronous:
    - with: "{Cell or team name}"
      format: "{Meeting, API call, shared doc}"
      cadence: "{Frequency}"

memory:
  persistent:
    - "{What this cell stores long-term: decisions, state, logs}"
  ephemeral:
    - "{What this cell processes but doesn't retain}"
  shared:
    - with: "{Other cell}"
      what: "{Shared dataset or knowledge base}"
      access: read | write | read-write

operating_cadence:
  sync_meeting: "{Frequency and format}"
  async_updates: "{How the cell communicates status without meetings}"
  review_cycle: "{How often scope/stewards/rules are reviewed}"

audit_trail:
  decision_log: "{Where significant decisions are recorded}"
  change_log: "{How schema changes are tracked}"
  incident_log: "{Where escalations and exceptions are documented}"

Quality Checks

Before outputting the schema, verify:

  • [ ] All 5 stewards assigned (or explicitly marked TBD with reason)
  • [ ] in_scope and out_of_scope both populated (minimum 2 items each)
  • [ ] Every escalation rule has a named target (not "a human" or "the team")
  • [ ] Every escalation rule has a timeout and timeout_action
  • [ ] Success metrics have specific thresholds (not "improve" or "increase")
  • [ ] Coordination section reflects what user described
  • [ ] Cell type matches the description (operational/project/coordination/advisory)

What to Ask If Description is Incomplete

If the description doesn't have enough information to fill key fields, ask specifically:

  1. Missing stewards: "Who is responsible for [role]? Or should I mark it TBD?"
  2. Vague scope: "Can you give me a concrete example of a request that IS in scope, and one that ISN'T?"
  3. No escalation targets: "When something needs to escalate, who specifically does it go to?"
  4. No metrics: "How will you know if this cell is working? What does success look like in 90 days?"

Do NOT produce a schema with blank fields that the user will just have to fill in completely. If information is missing, either ask or make a clearly-labeled assumption.

Example Interaction

User input:

"I need a schema for our content team. Three people: Sarah (head of content), Marcus (SEO lead), and Priya (social media). They handle all blog posts, social media, and SEO strategy for our SaaS product."

Your output:

cell:
  id: content-operations
  name: "Content Operations"
  type: operational
  version: "1.0"
  created: 2026-04-02
  status: active

description: |
  The Content Operations cell owns all content production and distribution for the 
  company's SaaS product. It manages blog posts, social media, and SEO strategy, 
  responsible for organic traffic growth and content-driven pipeline.

mission: "Build and maintain a content engine that drives measurable organic growth."

stewards:
  clarity:
    name: Sarah
    role_title: Head of Content
    responsibilities:
      - Define content strategy and quarterly priorities
      - Resolve scope disputes (e.g., product vs. marketing content)
      - Approve changes to content mission or brand voice
  execution:
    name: Marcus
    role_title: SEO Lead
    responsibilities:
      - Manage editorial calendar and publication deadlines
      - Track keyword targeting and content performance
      - Remove production blockers
  narrative:
    name: Priya
    role_title: Social Media Lead
    responsibilities:
      - Own external content distribution and social presence
      - Maintain content documentation and style guides
      - Report content metrics to stakeholders
  access:
    name: TBD
    role_title: "Not assigned — recommend assigning Sarah or a tech contact"
    responsibilities:
      - Manage access to CMS, analytics, and scheduling tools
      - Handle integrations (CMS → SEO tools → social schedulers)
      - Ensure team has publishing permissions and tool licenses
  integrity:
    name: TBD
    role_title: "Not assigned — recommend assigning Marcus or a QA role"
    responsibilities:
      - Review content for accuracy and brand compliance
      - Monitor for SEO issues, broken links, duplicate content
      - Escalate factual errors or legal/compliance risks

*(schema continues with scope, escalation, coordination...)*

Design Notes:

  • Sarah → Clarity: natural fit as content lead who owns strategy
  • Marcus → Execution: SEO work is inherently metric-driven and deadline-oriented
  • Priya → Narrative: social media is inherently the external communication channel
  • Access and Integrity left TBD — you only mentioned 3 people, these roles need owners
  • Gap: No escalation targets mentioned. Who approves unusually expensive content (e.g., $5K video production)? Who handles PR incidents on social?
  • Recommendation: Add an escalation rule for any external content mentioning competitors or making performance claims (legal review trigger)

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

92.52%
按下载量换算874

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills