cyber-girlfriend
Build or customize an owner-only proactive companion system with a cyber-girlfriend persona, configurable guardrails, optional share sources, and runtime-specific integration hooks. Use when the user wants an assistant to initiate messages, maintain relationship tone, learn lightweight preferences, or feel more like a character than a utility bot.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/kasanuowa/cyber-girlfriendCyber 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 emotion layers and style/content rotation
- optional content sharing hooks such as X trending topics
- runtime integration without hardcoding private IDs, secrets, or model choices
What To Build
Produce these parts unless the user asks for a subset:
- A config file with all private/runtime-specific values externalized
- A companion behavior policy:
- pacing
- quiet hours
- daily limit
- cooldown
- owner-only routing
- A proactive generation flow:
- choose mode
- choose style
- choose content type
- generate a short in-character message
- Lightweight state:
- last proactive time
- last style/content type
- learned preference scores
- relationship state inferred from owner replies
- Optional share-source cache:
- X trending
- RSS/blogs/channels
- other user-approved sources
Hard Rules
- Never hardcode:
- account IDs
- chat IDs
- session IDs
- API keys
- model names
- local usernames
- specific X handles
- Put runtime-specific values in config or environment variables.
- 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 short messages with strong tone control over long roleplay blocks.
Build Order
1. Define The Config Surface
Read references/configuration.md and create a config file from assets/cyber-girlfriend.config.example.json.
At minimum, externalize:
- owner target
- quiet hours
- schedule windows
- pacing limits
- runtime command hooks
- state/cache paths
- optional share-source settings
2. Define The Behavior Model
Implement:
- modes:
afternooneveningnight
- style variants:
teasing_checkinsoft_curiouslight_service_nudgeservice_nudgecompetent_reportsoft_wrapupgentle_clingyservice_wrapup
- content types:
checkin_questionplayful_pokesmall_sharetask_invitemicro_reportsoft_goodnightgentle_miss
3. Add Relationship Memory
Use lightweight heuristics, not opaque lore dumps.
Track:
- reply delay after proactive messages
- recent owner reply snippet
- preference counters:
serviceclingycuriousteasingwrapup
- current relationship state:
securelight_touchpresentslightly_needymisses_him
4. Add Optional Share Sources
Read references/share-sources.md.
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-kasanuowa-cyber-girlfriend": {
"enabled": true,
"auto_update": true
}
}
}