← 返回 Skills 市场
newsense2004

Friends to the End

作者 Newsense2004 · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
38
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install friends-to-the-end
功能描述
Use when Hermes agents, profiles, or app-embedded agents need to help each other by sharing skills, tools, context, verification, and handoffs. Also triggere...
使用说明 (SKILL.md)

Friends to the End / Wanna Play

Overview

Use this skill when one Hermes profile, service, dashboard, or embedded workflow needs a structured handoff to another Hermes-capable profile. The goal is to make profile-to-profile collaboration safe, truthful, and verifiable: provide only the necessary context, use the right profile/tools/skills, request machine-readable results when useful, and verify real side effects before claiming success.

The trigger phrase “wanna play” means: ask another capable Hermes profile or service to participate in the task with a clear role and verifiable return value.

This skill is especially useful when an app has weaker local logic than a full Hermes profile. Example: a web app can do OCR, but a Hermes profile has vision tools and a domain skill, so the app calls Hermes as a fallback and then verifies the result against source APIs.

When to Use

Use this skill when:

  • A Hermes-powered app needs a stronger Hermes profile for fallback reasoning.
  • One profile has a skill/tool another profile does not.
  • You need to clone or create a dedicated profile for an app, child agent, worker, or friend.
  • A task crosses systems: dashboard + VM + Designer/ComfyUI + Codex/llama.cpp + web/vision.
  • The user asks for Chucky, Pokémon, Matthew, Designer, or another named agent/profile to work together.
  • The user says “wanna play”, “work with Chucky”, “let the agents help each other”, or similar.

Do not use this skill for:

  • Simple single-agent tasks that need no other profile/tool context.
  • Sharing secrets between agents without explicit need.
  • Claiming another agent completed work without verifying its output.

Core Pattern

  1. Identify the friend.

    • Which profile/service has the needed tools or skills?
    • Which host is it on?
    • Which profile name should be used?
    • Is the profile dedicated to the app, or are you borrowing a general profile temporarily?
  2. Verify live state.

    • List profiles: hermes profile list.
    • Check toolsets: hermes tools list --profile \x3Cprofile>.
    • Check skill files or skill list.
    • Check service env if an app launches Hermes.
    • Check network endpoints for external helpers.
  3. Prefer a dedicated profile for app embeddings.

    • Clone from the working profile if needed: hermes profile create \x3Cnew-profile> --clone-from \x3Cknown-good-profile> --clone-all
    • Switch the app/service to explicit env vars: APP_HERMES_PROFILE=\x3Cnew-profile> APP_HERMES_HOME=/root/.hermes/profiles/\x3Cnew-profile>
    • Keep secrets in the Hermes profile, not in app code.
  4. Pass a compact, self-contained prompt.

    • Include the artifact path or URL.
    • Include OCR/logs/source hints, but tell the friend not to trust filenames.
    • Request strict JSON for app integrations.
    • Ask for confidence and reason when identification is uncertain.
  5. Verify the friend’s answer.

    • If the friend identifies an object/card/service, validate it against an authoritative source API.
    • If the friend writes a file, read it back.
    • If the friend starts a service, check health endpoints.
    • If the friend claims a price/value, show the source and distinguish estimates from raw market data.
  6. Clean up temporary artifacts.

    • Delete test cards/uploads if they were only verification.
    • Remove stale active work from Kanban if it is no longer active.
    • Keep backups for code/config changes.

Example: App Calls Hermes as a Vision Fallback

A web app can launch Hermes only after cheap local methods fail:

HERMES_HOME=/root/.hermes/profiles/pokemon \
hermes chat -Q \
  --profile pokemon \
  --skills trading-card-identification-pricing \
  --toolsets vision,web \
  -q 'Identify the Pokémon card in /path/to/upload.jpg. Use vision, not filename. Return compact JSON only.'

Good JSON shape:

{
  "card_name": "Perrin",
  "set_number": "220/167",
  "set_name": "Twilight Masquerade",
  "rarity": "Special Illustration Rare",
  "confidence": 0.96,
  "reason": "Visible Supporter name and bottom set number match source data."
}

Then the app should query a source API using the returned card_name and set_number, not blindly trust the model result.

Profile Hygiene

For embedded apps, avoid long-term dependency on a personal profile name if the app is its own agent. Create a dedicated profile:

hermes profile create pokemon --clone-from chucky --clone-all

Then configure the service with explicit environment variables, for example systemd drop-in:

[Service]
Environment=APP_HERMES_PROFILE=\x3Cdedicated-profile>
Environment=APP_HERMES_HOME=/root/.hermes/profiles/\x3Cdedicated-profile>
Environment=APP_HELPER_IMAGE_URL=\x3Cinternal-image-helper-url>
Environment=APP_HELPER_CODE_URL=\x3Cinternal-code-helper-url>
Environment=HERMES_NO_UPDATE_CHECK=1

Reload and restart:

systemctl daemon-reload
systemctl restart \x3Cservice>
systemctl show \x3Cservice> -p Environment --no-pager

Community and Pricing Notes

Default community posture: share this skill freely under MIT unless the user or registry explicitly supports paid skills.

If a future Hermes skill marketplace supports paid listings, treat this as a standard utility/community skill and use a modest “standard” listing price rather than premium pricing. Suggested baseline: free for community registry; if paid listing metadata is required, use a low standard utility price such as USD $5, not a subscription or enterprise price.

Do not invent a sale/publishing result. Use hermes skills publish or the current registry workflow and report the exact URL, package ID, or blocker.

Common Pitfalls

  1. Confusing app name with Hermes profile name.

    • “Pokemon” might be the app, service, or profile. Verify with hermes profile list and service env.
  2. Borrowing a personal profile forever.

    • It works for a quick test, but app integrations should get a dedicated profile.
  3. Trusting filenames.

    • For images/cards/documents, filenames are user-supplied hints at best. Use image/OCR/source matching.
  4. Claiming a friend succeeded without verification.

    • Hermes child runs and spawned profiles can fail silently, timeout, or return plausible wrong answers. Verify externally.
  5. Leaking secrets between friends.

    • Keep API keys in profile .env files. Never print or copy secret values into prompts, logs, or skills.
  6. Overusing expensive tools.

    • Try cheap deterministic checks first: OCR, source APIs, local health checks. Use vision/LLM fallback when those fail.

Verification Checklist

  • The intended profile exists and is the one the app/service invokes.
  • Required toolsets are enabled for that profile.
  • Required skills are installed for that profile.
  • Service environment explicitly names the profile/home when embedded.
  • The friend returns structured output for app integrations.
  • The result is verified against live files, APIs, logs, browser behavior, or source data.
  • Temporary test artifacts are cleaned up.
  • Any community publish/share attempt reports a real handle or exact blocker.
安全使用建议
Install only if you use Hermes-style multi-agent workflows. Before using it, make sure another profile is invited only on explicit user intent, avoid cloning personal profiles with secrets unless necessary, and verify any cross-agent result before acting on it.
能力评估
Purpose & Capability
The skill's purpose is to coordinate Hermes profiles, tools, context, verification, and handoffs; those capabilities are sensitive but coherent with the stated collaboration use case and include cautions about secrets and verification.
Instruction Scope
The trigger phrase "wanna play" and catch-all "or similar" wording are broad enough to risk accidental activation in natural-language trigger systems, but the artifact openly describes this behavior and does not hide unrelated actions.
Install Mechanism
The package contains only SKILL.md, no executable scripts, no install-time commands, and static scan and VirusTotal telemetry are clean.
Credentials
Examples include Hermes profile listing, toolset checks, profile cloning, service environment configuration, and service restart commands; these are proportionate to embedded Hermes workflows but should remain user-directed.
Persistence & Privilege
The skill recommends creating dedicated profiles and setting persistent service environment variables; this is disclosed and purpose-aligned, but profile cloning with --clone-all may copy sensitive profile state if used carelessly.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install friends-to-the-end
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /friends-to-the-end 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial public release for friends-to-the-end. - Introduces a skill enabling Hermes agents, profiles, or app-embedded agents to help each other through structured handoffs, collaboration, and context sharing. - Triggered by phrases like “wanna play” to facilitate multi-agent workflows with clear roles and verifiable return values. - Provides best practices for profile hygiene, verification, and cross-profile/app orchestration. - Includes detailed usage patterns, pitfalls to avoid, pricing/community notes, and a step-by-step checklist for robust agent collaboration. - Licensed under MIT and suggested as a free community skill.
元数据
Slug friends-to-the-end
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Friends to the End 是什么?

Use when Hermes agents, profiles, or app-embedded agents need to help each other by sharing skills, tools, context, verification, and handoffs. Also triggere... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 38 次。

如何安装 Friends to the End?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install friends-to-the-end」即可一键安装,无需额外配置。

Friends to the End 是免费的吗?

是的,Friends to the End 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Friends to the End 支持哪些平台?

Friends to the End 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Friends to the End?

由 Newsense2004(@newsense2004)开发并维护,当前版本 v1.0.0。

💬 留言讨论