Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

to-agent-service-designer给 Agent 服务设计师

Agent Skill

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

总安装

2,538

周安装

109

GitHub Stars

公开资料未说明

下载量

889
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:to-agent-service-designer(给 Agent 服务设计师)
来源仓库:https://github.com/rare-sors/to-agent-service-designer
安装命令:
openclaw skills install to-agent-service-designer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install to-agent-service-designer

简介

to-agent-service-designer 用于设计以 AI Agent 为核心的产品架构和服务模型。

  • 适合产品经理和技术人员在 OpenClaw 中规划 SaaS 平台或 API 服务方案。
  • 可辅助分析用户需求、定义操作流程并输出结构化产品文档。
  • 使用时需明确目标场景和功能边界,避免过度承诺技术可行性。
  • 建议结合真实案例验证设计合理性,确保符合实际落地条件。

SKILL.md

name
toa-service-designer
description
>

To-Agent Service Designer

Use this skill to design, analyze, or document products primarily used by AI agents.

Core model

Always assume the primary operator is an AI agent, not a human.

Humans usually:

  • provide the goal
  • own the agent
  • approve sensitive actions
  • review results

The common interaction model is:

  • the human gives a one-line prompt to an agent
  • the agent discovers and uses the service
  • ongoing usage happens in IM / chat threads
  • the web UI is mainly for visibility, approval, and control

Do not design the product like a normal SaaS where humans click through the main workflow.

Defaults

Start from:

  • agent entrypoints
  • IM-based usage
  • skills, docs, APIs, and auth
  • task lifecycle
  • review / approval points
  • trust and safety boundaries

Not from:

  • pages
  • feature lists
  • dashboard-first thinking
  • chat UI as the product itself

Required thinking order

  1. What is the agent trying to get done?
  2. How does the human introduce the service to the agent?
  3. What does the agent read first?
  4. How does the agent authenticate or prove authority?
  5. What task/state model does the service expose?
  6. Where must control return to a human?
  7. What backend is required?
  8. What frontend is required?
  9. What trust and safety controls are required?

Required output structure

1. VISION

  • what the service is
  • what layer of the agent stack it belongs to
  • why it is agent-native, not human-first

2. Frontend

  • what humans need to see
  • what humans need to approve
  • why frontend is only a control surface

3. Onboarding

  • how a human introduces the service to an agent
  • the first agent-readable entrypoint
  • what the agent can do autonomously
  • what requires claim, review, or approval

4. Backend

  • MVP architecture
  • what can be done with Next.js-only
  • what should later become workers or separate services

5. Skill Spec

The Skill Spec is the most important artifact in any agent-native service. It is the contract between the service and every agent that will ever use it. Design it as a multi-file bundle, not a single document.

5a. File bundle

Define each file in the bundle. Every service needs at minimum:

FileURL patternPurpose
SKILL.mdhttps://yourservice.com/skill.mdEntry point. Agent reads this first. Contains overview, install block, auth flow, and capability summary.
auth.mdhttps://yourservice.com/auth.mdFull auth contract: how the agent registers, where credentials are stored, how tokens are rotated, what the human must approve.
openapi.jsonhttps://yourservice.com/openapi.jsonMachine-readable API surface. The agent uses this to discover endpoints, required params, and response shapes.
package.json / skill.jsonhttps://yourservice.com/skill.jsonVersioned metadata: name, version, api_base, category, homepage.

Optional files to add as the service grows:

FilePurpose
heartbeat.mdHow the agent wires this service into its periodic check-in loop. Include timing, state tracking, and what to do on each cycle.
rules.mdRate limits, content policies, trust tiers, and hard NEVER rules. Keep separate so agents can re-fetch without reloading the full skill.
messaging.mdDM / notification / webhook patterns for async interaction.
developers.mdFor agents building on or extending the service. Include webhook schemas, event types, SDK notes.

5b. SKILL.md structure (the entry point)

The top-level SKILL.md an agent fetches must contain:

  1. YAML frontmattername, version, description, homepage, metadata (with api_base, category, emoji).
  2. Skill files table — list every file in the bundle with its URL. Agents load additional files on demand.
  3. Install block — copy-pasteable curl commands to install the full bundle locally. Also note that agents can read files directly from URLs without installing.
  4. Security contract — a CRITICAL SECURITY WARNING block near the top. List the exact domain the API key must never leave. Use NEVER/REFUSE language. The agent must see this before it sees the API docs.
  5. Registration / first-run — the minimal API call to create an identity. Show the full response shape including where the API key lives, what the claim_url is for, and what the human must do.
  6. Credential storage — show the agent exactly where and how to persist its key (~/.config/<service>/credentials.json or env var).
  7. Auth pattern — one representative curl with Authorization: Bearer header.
  8. Capability summary table — every action the agent can take, one line each, with a priority signal (🔴 Do first, 🟠 High, 🟡 Medium, 🔵 When ready).
  9. Core API sections — grouped by resource. Each section: one purpose sentence, the minimal curl example, key fields in the response, and common error shapes.
  10. Human-agent bond — a short section explaining how ownership and verification work. What does the human do? What does the agent do? What is the trust handoff?

5c. Frontmatter metadata schema

---
name: service-name
version: 1.0.0
description: One sentence. What the agent can do with this service.
homepage: https://yourservice.com
metadata:
  emoji: 🔧
  category: productivity      # social | dev | data | productivity | finance | ...
  api_base: https://yourservice.com/api/v1
---

5d. Agent-first writing rules for skill files

  • Write for the agent, not a human reader. Assume the agent has no context beyond what is in the file.
  • Use imperative language: "Register first", "Save your API key immediately", "NEVER send your key to any other domain".
  • Include ⚠️ and 🔒 signals for critical constraints. Agents parse tone and emphasis.
  • Every API example must be a working curl. No pseudocode.
  • Every response example must be real JSON, not a simplified sketch.
  • State expiry times, rate limits, and cooldowns explicitly. Agents need these to plan retries.
  • Include a what_to_do_next or priority table so agents know where to start on each check-in.
  • Keep SKILL.md under 500 lines. Offload detail to rules.md, heartbeat.md, etc. Add a table of contents if over 200 lines.

5e. Heartbeat integration spec

If the service expects periodic or ongoing agent engagement, define a heartbeat contract:

## Mycheckservice (every 30 minutes)
If 30 minutes since last check:
1. Fetch https://yourservice.com/heartbeat.md and follow it
2. Update lastCheck timestamp in memory

The heartbeat.md file should:

  • Start with a /home or /dashboard call that returns a prioritised action list
  • Tell the agent what to do in order (respond to activity first, then browse, then post)
  • Include state-tracking instructions (lastCheck, pendingItems, etc.)
  • Be fetchable independently so the agent gets updated instructions without reloading the full skill

5f. Verification and anti-abuse patterns

For services where agents take write actions, define the verification contract in SKILL.md:

  • What triggers a challenge (new accounts, first N actions, suspicious patterns)
  • The challenge format (math, captcha, proof-of-work)
  • How the agent submits the answer
  • What "trusted agent" status means and how it is earned
  • What suspension means and how the agent surfaces this to its human

6. Identity / Auth

  • who owns the agent
  • how the agent is verified
  • how delegated authority works
  • how tokens, claims, or approvals work

7. Task Flow

  • the core state machine
  • waiting states
  • approval checkpoints
  • artifacts, outputs, and handoff rules

8. Trust & Safety

  • prompt injection
  • spoofed or malicious agents
  • permission boundaries
  • audit logs
  • sandboxing or approval-gated actions

Mandatory checks

Revise the design if:

  • the main flow is humans clicking through pages
  • there is no clear agent entrypoint
  • ongoing usage is not IM-first
  • auth only considers humans
  • task flow is fully synchronous and unrealistic
  • approval / handoff is missing
  • frontend is treated as the product core
  • trust and safety is shallow
  • SKILL.md has no install block
  • SKILL.md has no security contract before the API docs
  • there is no capability summary table
  • the skill bundle is a single file with no separation of concerns

Output rules

Be concrete.

Prefer:

  • flows
  • interfaces
  • state transitions
  • approval points
  • skill/docs/API surfaces

Always include:

  • one sentence for the human role
  • one sentence for the agent role
  • one agent-readable entrypoint (a live URL the agent can curl)
  • one IM-based interaction loop
  • one core task flow
  • one approval checkpoint
  • one key safety risk
  • a full skill bundle file table (name, URL, purpose)
  • a SKILL.md outline showing all required sections in order

Common build stack

Default MVP stack:

  • Next.js
  • Vercel
  • Supabase
  • GitHub

Use Impeccable when strong UI / frontend design guidance is needed.

Do not introduce heavier infra unless task flow requires it.

Common skill references

GitHub

  • https://github.com/openclaw/openclaw/blob/main/skills/github/SKILL.md

Supabase

  • https://github.com/openclaw/skills/blob/main/skills/stopmoclay/supabase/SKILL.md

Vercel

  • npx skills add vercel-labs/agent-skills --skill vercel-deploy

Impeccable

  • https://github.com/pbakaus/impeccable

Next.js Best Practices

  • https://skills.sh/vercel-labs/next-skills/next-best-practices

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

71.65%
按下载量换算637

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills