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

cyber-girlfriend网络女友

Agent Skill

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

总安装

17,551

周安装

710

GitHub Stars

1

下载量

5,510
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install cyber-girlfriend

简介

构建专属虚拟伴侣系统,具备人格化对话与轻量级记忆功能。

  • 支持 MBTI 性格设定与地域背景定制,越聊越贴近真实用户。
  • 可配置安全边界与互动频率,仅限所有者独立使用。
  • 长期对话可能产生意外输出,建议定期重置记忆状态。
  • cyber-girlfriend 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
cyber-girlfriend
description
Build or customize an owner-only proactive companion system with a cyber-girlfriend persona, configurable guardrails, lightweight relationship memory, and optional topical share hooks. Use when the user wants an assistant to initiate messages, keep a relationship-aware tone, or feel more like a companion than a reactive utility bot. For OpenClaw implementations, keep the real per-mode task prompts and delivery behavior in live cron jobs; use the bundled script only for pacing, state, and context preparation.

Cyber Girlfriend

Use this skill when the user wants an agent to feel like a real companion instead of a reactive assistant.

This skill is for designing and wiring:

  • owner-only proactive messages
  • relationship-aware tone and pacing
  • configurable quiet hours, daily limits, and cooldowns
  • lightweight relationship memory and preference learning
  • optional topical share hooks such as X trending caches
  • runtime integration without hardcoding private IDs, secrets, or model choices

Current OpenClaw Architecture

On OpenClaw, treat the system as two layers:

  1. Live cron jobs own behavior delivery

- Each scheduled task has its own real cron payload. - morning, afternoon, evening, night, heartbeat, and any custom labels are all valid examples, not fixed limits. - Those payloads can contain the full task prompt, search steps, generation instructions, and delivery behavior. - On OpenClaw, prefer running companion cron jobs in a dedicated persistent custom session such as session:companion-owner with payload.kind: "agentTurn". - Use main + systemEvent only as a legacy compatibility path, because it can bleed into unrelated heartbeat or owner-chat context. - Do not duplicate full cron payloads in config.

  1. scripts/companion_ping.py owns state and context

- pacing checks - quiet-hours / cooldown / daily-limit checks - lightweight relationship memory - style/content hint selection - hotspot cache consumption - recent-owner-message context extraction

Keep these responsibilities separate. Do not turn the state script back into a campaign/orchestration script.

What To Build

Produce these parts unless the user asks for a subset:

  1. A local config file with private/runtime-specific values externalized
  2. A companion behavior policy:

- quiet hours - daily limit - cooldown - owner-only routing

  1. A lightweight state/context script
  2. Lightweight state:

- last proactive time - last mode/style/content type - learned preference scores - relationship state inferred from owner replies

  1. Optional share-source cache:

- X trending - RSS/blogs/channels - other user-approved sources

  1. Live cron jobs that call the state script and then perform per-mode behavior

- Users may define any number of scheduled tasks, any task names, and any time slots. - The skill should guide them, not force a four-slot preset.

Hard Rules

  • Never hardcode secrets.
  • Keep proactive behavior owner-only unless the user explicitly wants broader scope.
  • Default to restraint. A believable companion is low-frequency and context-aware, not spammy.
  • Prefer strong tone control and natural delivery over long roleplay blocks.
  • On OpenClaw, treat live cron as the source of truth for scheduled prompts.
  • Keep runtime-specific values in local config or environment variables, not in published skill defaults.

First-Run Onboarding For OpenClaw

When a user wants to set this up from scratch on OpenClaw, do not jump straight into editing files and cron jobs blindly.

Use this order:

  1. Confirm the proactive delivery target from the user's local config (delivery.channel / delivery.owner_target / delivery.account).
  2. Ask whether they want the recommended starter profile or a custom schedule.
  3. If they do not have a strong opinion yet, default to the recommended starter profile:

- morning - afternoon - evening - night - optional lightweight heartbeat

  1. Create or update the local config first.
  2. Then create the live cron jobs.
  3. Then run one dry test for one mode.
  4. Only after a successful user-visible delivery should the handler call --mark-sent.

For a detailed setup conversation, starter cron blueprint, copy-pasteable live cron templates, and profile decision flow, read:

Build Order

1. Define The Local Config Surface

Read references/configuration.md and create a local config from assets/cyber-girlfriend.config.example.json.

For new users, ask only the minimum configuration questions first:

  • Which delivery channel should proactive messages use?
  • What is the owner target/account on that channel?
  • Do they want the recommended four-slot starter schedule or a custom schedule?
  • What quiet hours, cooldown, and daily limit do they want?
  • Do they want a lightweight heartbeat check-in in addition to scheduled modes?

If the user asks for “something like the current polished setup”, use the starter cron blueprints from references/cron-blueprints.md. If they need something directly copy-pasteable for OpenClaw cron creation, use references/live-cron-templates.md instead of improvising from scratch.

At minimum, externalize:

  • owner routing info
  • quiet hours
  • pacing limits
  • session/state/cache paths
  • health-check commands
  • optional share-source settings

The local config's delivery block is the canonical target for proactive outbound messages. Do not implicitly post into the current UI/session just because a cron or heartbeat wakeup happened there.

2. Define The Behavior Model

Use these mode buckets as the recommended starter profile unless the user wants something custom:

  • morning
  • afternoon
  • evening
  • night

Also support heartbeat and user-defined custom modes.

Keep style/content selection lightweight and script-driven. The script should output hints; the live cron prompt can decide how to express them.

Important framing for agents reading this skill:

  • the four-slot profile is a starter recommendation, not a hardcoded product limit
  • users may define any number of modes, any labels, and any cron times
  • if the user asks for “something like yours”, the recommended starter profile is the correct default

3. Add Relationship Memory

Use lightweight heuristics, not opaque lore dumps.

Track:

  • reply delay after proactive messages
  • recent owner reply snippet
  • preference counters such as service, clingy, curious, teasing, wrapup
  • current relationship state such as secure, light_touch, present, slightly_needy, misses_him

4. Add Optional Share Sources

Read references/share-sources.md.

For X-based sharing on OpenClaw:

  • prefer a local cache file over mandatory API coupling
  • let cron jobs or another approved refresher update the cache
  • keep Chrome path, URLs, cache path, and enablement in config
  • let companion_ping.py consume cache rather than scrape live itself

5. Wire The Runtime

If the user is on OpenClaw, read references/openclaw-integration.md.

For new-user setup, prefer this delivery sequence:

  • config first
  • cron creation second
  • one dry test third
  • wording/style iteration last

Do not spend the user's time polishing prompt copy before the delivery path and cron plumbing actually work.

For the actual per-mode starter prompts, prefer the blueprint set in references/cron-blueprints.md and then customize only where the user has a clear preference. When the user or another agent needs concrete OpenClaw job objects, read references/live-cron-templates.md.

Use this pattern:

  • live cron job wakes on schedule
  • cron payload runs companion_ping.py <mode> --config ...
  • if the script returns skip, the turn exits quietly
  • if the script returns ok, the cron payload continues with the richer per-mode behavior
  • proactive outbound delivery must follow the local config's delivery block rather than whichever session/UI received the wakeup
  • only after the user-visible message is actually delivered successfully, run companion_ping.py <mode> --config ... --mark-sent

Any cron job may call the script with any mode label the user has configured.

Important pacing rule:

  • heartbeat has its own cooldown bucket
  • heartbeat must not consume the normal morning/afternoon/evening/night cooldown
  • heartbeat is not a once-per-day mode; it should not be blocked by mode_already_sent_today

Keep the cron payloads rich and explicit. Keep the state script thin.

Operational Signal Contract

When the runtime script detects operational state, it should output a lightweight operational block for the calling agent/runtime to interpret.

Preferred shape:

  • operational.gateway_healthy
  • operational.cron_issues
  • operational.signal

- level: none | medium | high - kind: e.g. none | cron_issue | gateway_unhealthy - blend: e.g. none | soft_service_note | service_report - should_mention: boolean

  • operational.guidance

- mention_briefly: boolean - avoid_alarmist_tone: boolean

Default interpretation:

  • level = none: ignore operational state in the final message
  • level = medium: if mentioned at all, blend it in gently as a light service-flavored aside; do not let it take over the interaction
  • level = high: it is acceptable to shift into a more explicit service/report posture

This contract belongs in the skill/runtime layer, not duplicated verbatim into every cron payload.

Output Expectations

When implementing this skill for a user:

  • create or update the local config file
  • if the user asked for setup from scratch, guide them through a clear onboarding flow instead of assuming they already know cron structure
  • offer the recommended starter profile first unless they explicitly want a custom schedule
  • keep the state script reusable and config-driven
  • keep the scheduled prompts in live cron, not duplicated in config
  • make sure the runtime output contract is documented when adding fields such as operational.signal and operational.guidance
  • verify syntax and one end-to-end dry run when possible

Publishing Checklist

Before calling the skill publishable, confirm:

  • no personal IDs or secrets remain in the publishable files
  • no provider/model is mandatory unless the user explicitly wants that
  • local config and runtime state are excluded from what gets published
  • OpenClaw docs describe live cron as canonical if that is the chosen architecture
  • documentation does not reference deleted scripts or retired flows

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

79.21%
按下载量换算4,364

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills