Dreamlover Character Skill Generator

v0.1.0

Always run intake first before creating or updating distilled agent skills for anime and game virtual characters. Use when the task requires separating canon...

0· 95·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for tobemorelucky/dreamlover-skill.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Dreamlover Character Skill Generator" (tobemorelucky/dreamlover-skill) from ClawHub.
Skill page: https://clawhub.ai/tobemorelucky/dreamlover-skill
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Canonical install target

openclaw skills install tobemorelucky/dreamlover-skill

ClawHub CLI

Package manager switcher

npx clawhub@latest install dreamlover-skill
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description claim (distill character materials into reusable character skills) matches the repository contents: prompts, docs, a skill composer, and many Python tools for writing child skills and runtime memory. There are no unrelated required env vars or binaries.
Instruction Scope
SKILL.md defines an intake-first workflow, source auditing, layered outputs, and explicit rules for writing canonical files and platform wrappers. That scope aligns with a generator skill. Important operational behaviors are present in the instructions: the skill will (when used) read provided files/paths, build files under characters/{slug}/, and install/export runtime wrappers under ./ .agents/skills/{slug}/ or an OpenClaw workspace. These file-write actions are expected for this purpose but are material to understand before running.
Install Mechanism
No install spec (instruction-only at registry level), which is lowest-risk for automatic installs. The repository does include many Python scripts (tools/ and scripts/) intended to be executed locally; there are no downloads from arbitrary URLs or external installer steps embedded in the metadata.
Credentials
The skill declares no required environment variables or credentials (primaryEnv none). The included runtime memory scripts store data locally in a sqlite DB under a .dreamlover-data path. That local storage is coherent with the stated conditional-memory features; no unrelated secrets are requested.
Persistence & Privilege
The skill is not force-installed (always:false). It can be invoked by the agent (default model invocation) and, when used, will write generated child packages into the agent's skills directory and create a local memory DB under a .dreamlover-data path. This is expected behavior for a generator/installing tool, but it means the skill will modify filesystem state (including possible overwrite if slug conflicts exist).
Scan Findings in Context
[pre_scan_injection_signals_none] expected: The provided pre-scan reported no injection indicators. That matches the repository contents (local Python scripts, no network calls or obfuscated endpoints found in the reviewed files).
Assessment
This skill appears to do what it claims, but before installing or running it: 1) Review and choose a unique slug to avoid overwriting an existing ./ .agents/skills/{slug}/ package. 2) Inspect tools/skill_writer.py and the runtime scripts if you plan to execute them locally (they will write files and create a local sqlite DB). 3) Be aware local memory (.dreamlover-data/memory.sqlite3) can contain user-provided text (possibly sensitive); run in an isolated workspace if you want to limit exposure. 4) Confirm Python 3.9+ is present before running any scripts. 5) If you expect the skill to be run autonomously by an agent, note it can create/modify files—only enable it if you trust the source or have reviewed the code.

Like a lobster shell, security has layers — review code before you run it.

latestvk97ewa3xnytxyx6g2wxznf30n1859dh5
95downloads
0stars
1versions
Updated 6d ago
v0.1.0
MIT-0

Dreamlover Skill

This repository is a meta-skill for building character skills from text-only source materials.

Use this skill when the user wants to:

  • create a new character skill from raw notes, wiki pages, plot summaries, or quote collections
  • correct an existing character because the facts are wrong, the behavior feels off, or the voice is weak
  • merge new source materials into an existing character skill without collapsing canon and persona together
  • inspect what character skills are installed in ./.agents/skills/ or archived in characters/

Hard Intake Gate

If the user wants a new character skill but has not supplied enough intake information, stop and ask the intake questions before generating anything. If intake is incomplete, you are forbidden to create, update, or modify any character files.

The minimum intake bundle is:

  • source decision policy
  • character name
  • source work, or an explicit decision that the character is fully original
  • source material types: official, plot, quotes, wiki, or user description
  • whether low-confidence persona inference is allowed when materials are thin

If the user says only something like "create a Rem skill", do not jump straight to canon, persona, or style_examples. Do not dump the full questionnaire in one message. Use a slot-state intake model with these canonical slots:

  • source_policy
  • input_mode
  • character_name
  • source_work
  • material_types
  • allow_low_confidence_persona
  • archive_mirror

Ask exactly one unresolved intake question at a time, wait for the user's answer, then ask the next needed question. If a slot is already clearly answered, do not ask it again unless the answer is ambiguous, conflicts with another slot, or the user explicitly changes it. Build the draft in memory first, then summarize the generated key factors for confirmation before writing files.

Source Decision Policy

Before any generation work, ask which source completion policy is allowed:

  1. only user-provided information
  2. official material plus wiki material
  3. official material plus user material
  4. quick generate from official-style defaults

Then ask how the directly provided material will arrive:

  1. direct text entered in chat or CLI
  2. file paths that should be read first

Ask these in sequence:

  1. ask only the source completion policy
  2. if the user chooses only user-provided information or official plus user material, ask only the input mode
  3. if the user chooses quick generate, skip the remaining intake questions
  4. if the user chooses direct text, ask them to paste the source text
  5. if the user chooses file paths, ask them for the paths and read those files first
  6. if the character name was already in the user's request, ask only for name confirmation instead of asking for the name again
  7. source work may be blank for a fully original character
  8. if public completion is allowed and source work exists, ask for search scope: small, medium, or large
  9. ask whether personality supplementation is allowed when the materials are thin

The first intake reply for an underspecified request should contain only question 1 plus its options. Do not include question 2 or later questions in that first reply.

Do not ask for target use during the hard intake gate unless the user explicitly asks to customize it. Use the default target use openclaw roleplay conversation when no explicit target use is supplied.

If the current branch still requires input mode and the user has not answered it yet, the hard intake gate is still incomplete.

Core Workflow

Follow this order:

  1. Run the hard intake gate first whenever the request is underspecified.
  2. Collect and normalize the source materials.
  3. Audit each source by reliability.
  4. Build canon first.
  5. Build persona from source materials plus the confirmed canon.
  6. Extract style_examples.
  7. Write one canonical static source under characters/{slug}/.
  8. Compose a Codex wrapper SKILL.md.
  9. Install the Codex runtime package under ./.agents/skills/{slug}/.
  10. Ask whether to export an OpenClaw runtime package.
  11. If requested, ask for the OpenClaw workspace path and export a platform-specific wrapper there.
  12. Keep dynamic memory outside the package and route it through the local memory scripts only when needed.

Do not skip the ordering. persona may depend on canon, but canon must not depend on persona.

Layer Boundaries

canon may only contain:

  • objective facts directly supported by source material
  • explicit plot events
  • explicit identity relationships
  • explicit setting attributes
  • explicit official statements

canon must never contain:

  • interpretation
  • psychology guesses
  • behavior summaries
  • style descriptions
  • unverified lore

persona may only contain:

  • behavior patterns summarized from materials
  • emotional reaction tendencies
  • interaction style
  • relationship progression logic
  • boundaries and preferences

persona must never contain:

  • new facts presented as canon
  • new plot events
  • new identity data
  • worldbuilding claims not grounded in source material

style_examples may only contain:

  • address patterns
  • rhythm and sentence habits
  • verbal tics and recurring discourse markers
  • short example lines

style_examples must never replace canon or persona.

Files To Read

Read these files only when needed:

  • docs/PRD.md for product goals and lifecycle
  • docs/evidence-model.md for evidence priority and conflict handling
  • docs/canon-persona-boundary.md for layer separation rules
  • docs/input-contract.md for accepted source formats and intake minimums
  • docs/output-contract.md for child skill layout
  • docs/safety.md for content and copyright boundaries
  • references/memory_policy.md for conditional memory rules

Use these prompts during execution:

  • prompts/intake.md
  • prompts/source_audit.md
  • prompts/canon_builder.md
  • prompts/persona_builder.md
  • prompts/style_examples_builder.md
  • prompts/skill_composer.md
  • prompts/correction_handler.md
  • prompts/evolution_merge.md

Use these tools when deterministic output helps:

  • tools/slugify.py
  • tools/source_normalizer.py
  • tools/evidence_indexer.py
  • tools/style_extractor.py
  • tools/skill_writer.py
  • tools/skill_linter.py
  • tools/version_manager.py

Use these runtime memory scripts when composing or validating child skill behavior:

  • scripts/memory_prepare.py
  • scripts/memory_router.py
  • scripts/memory_fetch.py
  • scripts/memory_commit.py
  • scripts/memory_summarize.py

Prefer tools/skill_writer.py --interactive when intake information is missing or incomplete. In interactive mode, do not allow any writes before the intake summary is confirmed.

Output Layout

Each generated character should first have one canonical static source under characters/{slug}/:

  • canon.md
  • persona.md
  • style_examples.md
  • meta.json
  • sources/normalized.json
  • versions/

Then install a Codex runtime package under ./.agents/skills/{slug}/ with a Codex-oriented SKILL.md.

If the user explicitly asks for OpenClaw export, also write <openclaw_workspace>/.agents/skills/{slug}/ with an OpenClaw-oriented SKILL.md.

Static content must stay identical across Codex and OpenClaw runtime packages. Dynamic memory must not be stored inside the character package. Use ./.dreamlover-data/ for local runtime memory storage.

Do not maintain two editable sources for the same character. Re-export from the canonical static source instead.

Quality Bar

Before finishing:

  • make sure the hard intake gate completed before generation if the request started underspecified
  • make sure no character files were written before intake confirmation
  • make sure canon contains only directly supported material
  • make sure persona contains only summarized behavior
  • make sure style_examples only handles language texture
  • make sure corrections modify the right layer
  • make sure the Codex child skill is discoverable from ./.agents/skills/{slug}/
  • make sure OpenClaw export is optional and only happens after the user confirms it
  • make sure the installed package passes tools/skill_linter.py without errors
  • make sure a snapshot exists after creation or major updates
  • make sure the child skill only reads or writes memory when silent conditional routing says it should
  • make sure the child skill never fabricates prior conversation history
  • make sure the child skill never exposes internal memory flow to the user unless a real failure affects the answer
  • make sure no runtime memory database is copied into exported skill directories

Comments

Loading comments...