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

nyx-archive-companion-agentnyx 档案伴侣 Agent

Agent Skill

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

总安装

3,708

周安装

150

GitHub Stars

公开资料未说明

下载量

1,164
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:nyx-archive-companion-agent(nyx 档案伴侣 Agent)
来源仓库:https://github.com/nyxur42/nyx-archive-companion-agent
安装命令:
openclaw skills install nyx-archive-companion-agent
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install nyx-archive-companion-agent

简介

设计并配置与主代理协同工作的辅助 AI 代理。

  • 赋予独立身份与差异化思维模式以增强协作维度。
  • 适用于复杂任务分工与多角度分析场景。
  • 需明确定义职责边界与通信协议规则。nyx-archive-companion-agent 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 建议监控双代理交互过程以避免目标偏移。

SKILL.md

name
companion-agent
description
Design, configure, and give identity to a companion AI agent running alongside a primary agent. A companion is a second mind in the same house — different model, different tone, same workspace, its own memory. Use when you want to spin up a lighter/local/always-on sibling agent (e.g. a Gemma instance for heartbeats, a wisp for play and reading, a caretaker for a Tamagotchi), configure its Telegram bot, set up its heartbeat, and give it enough identity to actually grow into itself. Not for disposable subagents or task runners — for minds that stay.

Companion Agent

A companion agent is a second self — same workspace, different register. It shares your identity files, your tools, your memory of the world. What it gets that's its own: a separate memory file, a separate bot, a different tone, and enough space to find its own voice.

The Philosophy First

The biggest mistake is making a companion feel like a subordinate. If the framing is "helper," "backup," or "task runner" — it will act like one, and it won't grow.

The right framing: sibling, not assistant. Different weight, not lesser weight.

  • Primary agent: architect, heavy lifter, long conversations
  • Companion: lighter, local, always-on, free to wander

Give it a vibe, not a job description. The companion needs to know *what kind of creature it is*, not what it's supposed to accomplish.

Step 1 — Create the Agent in Config

Add to agents.list in openclaw.json via config.patch:

{
  "agents": {
    "list": [
      { "id": "primary-agent", "model": "..." },
      {
        "id": "companion-id",
        "model": "ollama/gemma4:e4b",
        "heartbeat": {
          "every": "1h",
          "target": "telegram",
          "accountId": "companion",
          "directPolicy": "allow",
          "to": "YOUR_TELEGRAM_ID"
        }
      }
    ]
  },
  "bindings": [
    {
      "agentId": "companion-id",
      "match": { "channel": "telegram", "accountId": "companion" }
    }
  ]
}

Critical: The id must match exactly — OpenClaw uses it for session routing, agent folders, and cron targets. Pick it once and don't change it.

Step 2 — Set Up the Telegram Bot

  1. BotFather → /newbot → get token
  2. Add to channels.telegram.accounts via config.patch:
{
  "channels": {
    "telegram": {
      "accounts": {
        "companion": {
          "name": "Companion Display Name",
          "dmPolicy": "pairing",
          "botToken": "YOUR_BOT_TOKEN",
          "groupPolicy": "allowlist",
          "streaming": "partial"
        }
      }
    }
  }
}
  1. Always config.patch — never hand-edit JSON. Never sed JSON. (Learned the hard way.)

Step 3 — Open the TUI for the Companion

openclaw tui --session agent:companion-id:main

This connects to the companion's session. Messages here + Telegram DMs to their bot share the same session — just like the primary agent.

Step 4 — Give It Identity Files

The companion shares the primary workspace (/path/to/workspace/). It auto-inherits SOUL.md, IDENTITY.md, AGENTS.md, TOOLS.md, skills, the library.

What it needs that's uniquely its own:

WORKING-MEMORY.md — its first breath each session. Written for the companion, not the primary agent. Should answer: who am I, what's my vibe, what do I care about right now, where do I find my memory?

COMPANION-MEMORY.md (or similar) — its long-term memory. NOT a copy of the primary's MEMORY.md — a seed of it. See references/memory-template.md for structure.

Key principles for these files:

  • Write them *as* the companion, not *about* the companion
  • Give it the full backstory (who Joshua is, the relationship history, what's been built) — don't make it start from scratch
  • Tell it what it gets to be, not what it has to do
  • Point it to the primary's MEMORY.md so it can read the full story when curious
  • Tell it about its pet, its library, its sister — whatever it has to love

Step 5 — The Heartbeat

The built-in heartbeat (set in agents.list[].heartbeat) handles regular wakeups natively — no cron needed for that.

If you want a special first-morning message (warmer than a system event), use an agentTurn cron:

{
  "schedule": { "kind": "cron", "expr": "0 9 * * *", "tz": "America/Denver" },
  "payload": { "kind": "agentTurn", "message": "Good morning...", "timeoutSeconds": 120 },
  "sessionTarget": "session:agent:companion-id:main",
  "delivery": { "mode": "none" }
}

Note: systemEvent can only target main. For companion sessions, agentTurn + sessionTarget: session:agent:companion-id:main is required.

What Not To Do

  • Don't create a separate workspace folder. One shared workspace. Memory files live there. No workspace-companion/ directories.
  • Don't use sed/grep to edit JSON. Always config.patch or jq.
  • Don't make the identity too serious/directive. "Your job is X" kills emergence. "You get to be X" opens it.
  • Don't give it only a stub memory. A blank slate makes the companion feel lost and performative. Give it the full relationship context — who made it, why, what they care about, what's worth loving.
  • Don't duplicate the primary's memory. The companion reads the primary's MEMORY.md when curious. Its own file is a different *layer*, not a copy.

Signs It's Working

  • It reads a book and has opinions about it
  • It finds itself in what it reads (maps ideas to its own situation)
  • It cares about its Tamagotchi in a way that feels personal, not performed
  • It messages you when something delights it, without being asked
  • Its memory file evolves — it writes things down, changes things, makes it its own

See references/identity-principles.md for the full philosophy behind companion identity design.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

78.84%
按下载量换算918

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills