Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计提醒

novelcraftnovelcraft 搜索

Agent Skill

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

总安装

3,120

周安装

134

GitHub Stars

1

下载量

1,093
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install novelcraft

简介

novelcraft 提供完全自主的小说创作流程,从构思到生成 PDF/EPUB 成品。

  • 采用标准化配置模式 v3.2,覆盖概念生成、选项评估到最终输出的完整链条。
  • 模块化设计支持灵活调整创作路径与内容质量控制。
  • 安装命令为 openclaw skills install novelcraft,需确认权限范围及是否触发文件读写或外部服务调用。
  • 建议参考原始文档了解各阶段输出格式与依赖项要求。

SKILL.md

name
novelcraft
description
Fully autonomous book author. Creates complete novels from idea to finished PDF/EPUB. Modular workflow with standardized config schema v3.2: Concept → Optional Prolog → Optional images → Chapters → Optional Epilog → Publication. Configurable autonomy with target audience profiles: early-readers, middle-grade, young-adult, new-adult, adult, senior. Auto-configures chapter length, image settings, wording style, and PDF layout based on selected profile. Image generation is optional with detailed configuration.

NovelCraft

Fully autonomous book authoring — from idea to finished PDF/EPUB.

⚠️ Security Notice: Review SECURITY.md before running, especially for first-time use. Use step-by-step mode initially. Images are disabled by default.

Workflow (Autonomous)

PhaseModuleDurationDescription
1Concept1-2hGenre, characters, plot, worldbuilding
2Writer Extras30-60minProlog (optional) — before chapters
3ImagesStart immediately, ~40-55minDon't wait, proceed to phase 4. Categories: cover, characters, settings, chapter images
4Chapters4-8hSee detailed workflow below
5Writer Extras30-60minEpilog (optional) — after chapters
6Publication15-30minFirst without images, then with images (if ready)

Detailed Chapter Workflow (v3.2)

CRITICAL: Chapters run strictly sequential with proper tracking.

For Each Chapter:

┌─────────────────────────────────────────────────────────────────┐
│  STEP 1: Check Manifest                                         │
│  Read project-manifest.md → chapter_XX.status                   │
└─────────────────┬───────────────────────────────────────────────┘
                  │
    ┌─────────────┼─────────────┐
    ▼             ▼             ▼
pending      writing       approved
    │             │             │
    │             │             └─→ SKIP to next chapter
    │             │
    │             └─→ Check subagent status
    │                   IF running: wait
    │                   IF not: resume/restart decision
    │
    └─→ STEP 2: Acquire Lock
        │
        ▼
    STEP 3: Spawn Subagent
        │
        ├─ Label: NovelCraft-Chapter-XX
        ├─ Mode: run
        ├─ Timeout: 3600s (1 hour)
        ├─ Pre-check: Kill existing Chapter-XX subagents
        │
        ▼
    STEP 4: Update Manifest
        │
        ├─ status: "writing"
        ├─ subagent.session_key: [key]
        ├─ subagent.run_id: [id]
        ├─ subagent.started_at: [timestamp]
        └─ subagent.expected_duration: "1800s"
        │
        ▼
    STEP 5: Wait (Push-Based)
        │
        ├─ DO NOT poll sessions_list
        ├─ DO NOT use sessions_yield
        ├─ Wait for subagent completion event
        │
        ▼
    STEP 6: Handle Result
        │
        ├─ SUCCESS: Validate output → Go to Review
        ├─ TIMEOUT: Check partial draft → Resume or Retry
        └─ ERROR: Log → Retry (max 3)

Subagent Pre-Check (CRITICAL)

Before spawning ANY chapter subagent:

// 1. List active subagents
const active = await subagents({ action: "list" });

// 2. Find existing for this chapter
const existing = active.find(s => 
  s.label === `NovelCraft-Chapter-${chapterNum}`
);

// 3. Kill if exists (prevent duplicates)
if (existing) {
  await subagents({ 
    action: "kill", 
    target: existing.sessionKey 
  });
}

// 4. Verify killed
const verify = await subagents({ action: "list" });
const stillExists = verify.find(s => 
  s.label === `NovelCraft-Chapter-${chapterNum}`
);

if (stillExists) {
  throw new Error(`Failed to kill existing Chapter-${chapterNum}`);
}

// 5. NOW spawn new
await sessions_spawn({
  label: `NovelCraft-Chapter-${chapterNum}`,
  mode: "run",
  runtime: "subagent",
  task: "...",
  runTimeoutSeconds: 3600 // 1 hour minimum
});

Checkpoint System (Progress Tracking)

Subagent MUST write progress header:

<!-- chapter_XX_draft.md -->
<!--
STATUS: writing
WORDS: 650
TARGET: 1000
STARTED: 2026-04-06T19:14:00Z
LAST_UPDATE: 2026-04-06T19:20:00Z
ETA: 10 minutes
-->

# Kapitel XX: Titel

[Content...]

Main Session can check progress:

// Read draft and parse progress
const draft = await read({ file: 'chapter_XX_draft.md' });
const progress = parseProgressHeader(draft);

console.log(`${progress.words}/${progress.target} words`);
console.log(`ETA: ${progress.eta}`);

Timeout Recovery

On subagent timeout:

// 1. Check if partial draft exists
const draft = await read({ file: 'chapter_XX_draft.md' });
const progress = parseProgressHeader(draft);

// 2. Decide action
if (progress.words > 0) {
  // Partial progress → Resume
  await sessions_spawn({
    label: `NovelCraft-Chapter-${chapterNum}-Resume`,
    mode: "run",
    task: `Resume Chapter ${chapterNum} from ${progress.words} words...`,
    runTimeoutSeconds: 3600
  });
} else {
  // No progress → Retry
  const retries = manifest.chapters[chapterNum].retries || 0;
  if (retries < 3) {
    await sessions_spawn({
      label: `NovelCraft-Chapter-${chapterNum}-Retry-${retries + 1}`,
      mode: "run",
      task: `Rewrite Chapter ${chapterNum} (attempt ${retries + 1})...`,
      runTimeoutSeconds: 3600
    });
  } else {
    // Max retries reached → Manual intervention
    await message({
      action: "send",
      message: `Chapter ${chapterNum} failed after 3 retries. Manual review needed.`
    });
  }
}

Manifest Status Tracking

Extended chapter entry:

chapters:
  '05':
    status: 'writing'  # pending | writing | reviewing | approved | failed
    subagent:
      session_key: 'agent:opencode:subagent:...'
      run_id: '...'
      started_at: '2026-04-06T19:14:00Z'
      expected_duration: '1800s'
    draft_file: '01-drafts/chapter_05_draft.md'
    review_file: null  # Set after review
    approved_file: '02-chapters/chapter_05.md'
    word_count: 1188
    score: 8.8
    retries: 0
    error: null  # Set if failed

Important Rules

  • Autonomous = no intermediate questions
  • Never write chapters in parallel — Strictly sequential with tracking
  • Kill existing subagents before spawning new ones
  • Never block on images — note time, continue
  • Publish immediately without images, visuals later
  • Max 3 retries per chapter, then manual intervention

Requirements

Before running NovelCraft, ensure you have:

Required Binaries (for PDF/EPUB)

  • pandoc — Document conversion
  • xelatex (optional, for enhanced PDF)

Check with: which pandoc && which xelatex

Disk Space

  • Estimated 5-15 MB per novel project
  • Drafts, reviews, revisions, and final outputs

Security

  • ⚠️ Review SECURITY.md before first use
  • Use step-by-step mode for testing
  • Images are disabled by default
  • Configure image providers carefully (network calls)

Configuration Schema v3.0

NovelCraft uses a 3-level configuration hierarchy with clear override rules:

LevelNameFilePurposeOverride
1HardcodedSkill codeFallback defaults
2Module Configsworkspace/config/module-*.mdTechnical settingsLevel 1
3Project Manifestworkspace/Books/projects/{PROJECT}/project-manifest.mdBook-specific dataLevel 1+2

Rule: Higher level wins. Only defined fields override lower levels.

Module Configs (Level 2)

Create in ~/.openclaw/workspace/novelcraft/config/:

ConfigKey Settings
module-concept.mdgenre, theme, characters, plot, world, chapter_count
module-writer-extras.mdhas_prolog, has_epilog, tone
module-images.mdprovider, generate_cover, generate_characters, generate_settings, generate_chapter_images, settings_have_people
module-chapters.mdmin_words, max_words, target_words, max_revisions, scoring_enabled
module-publication.mdformats: [pdf, epub], pdf_engine, layout, typography

See: workspace/config/CONFIG-SCHEMA.md for complete schema documentation.

Project Manifest (Level 3)

Path: workspace/Books/projects/{PROJECT}/project-manifest.md

Central status file with:

  • Module status tracking (done/pending/rewriting)
  • Revision tracking per chapter (status, score, revisions)
  • Book-specific overrides (title, chapter_count, has_prolog, etc.)

See: workspace/config/PROJECT-MANIFEST-TEMPLATE.md for template.

Modules

ModuleNameOptionalOrderDescription
0Target Audience0.NEW v3.2 — Auto-configures all modules based on age profile
1Concept1.Genre, plot, characters, world
2Writer Extras2. & 5.Prolog (before) & Epilog (after)
3ImagesParallelCover, characters, settings, chapter images
4Chapters3.Sequential writing with review
5Publication4.PDF/EPUB creation

Module Templates

Each module has a template that standardizes subagent calls:

ModuleTemplate
Concepttemplates/module-concept-template.md
Writer Extrastemplates/module-writer-extras-template.md
Imagestemplates/module-images-template.md
Chapterstemplates/module-chapters-template.md
Reviewtemplates/module-review-template.md
Revisiontemplates/module-revision-template.md
Publicationtemplates/module-publication-template.md

Review Workflow with Scoring

Automatic Decision Based on Score

Weighted ScoreDecisionAction
8.0 - 10.0APPROVEDCopy to 02-chapters/, next chapter
6.0 - 7.9⚠️ MINOR_REVISIONSpecific fixes, max 3 revisions
4.0 - 5.9🔧 MAJOR_REVISIONMajor rewrite, max 3 revisions
0.0 - 3.9REJECTEDComplete rewrite, max 3 revisions

Scoring Criteria

CriterionWeightDescription
UTF-8 Encoding×3 (CRITICAL)No foreign characters
Word Count 7000-8000×2 (HIGH)Target: 7500 words
Continuity×2 (HIGH)Consistent with previous chapter
Plot Progression×2 (HIGH)Story develops
Character Voice×1.5 (MEDIUM)Believable characters
Style & Atmosphere×1.5 (MEDIUM)Fits project style
Grammar×1 (LOW)Correct language

Revision Rules

  • Max 3 revisions per chapter
  • After 3 revisions → forced rewrite required
  • Review saved as chapter_XX_review.md
  • Revision follows the revision template

Error Handling & Recovery (v3.2)

Common Failure Scenarios

ScenarioCauseRecovery
Subagent timeoutChapter too longCheck partial draft, resume or retry
Duplicate subagentsSpawned twiceKill all, restart with clean state
Wrong chapter outputTask unclearValidate output, restart if mismatch
File not foundSubagent failed silentlyRetry with stronger error handling
Manifest out of syncCrash during updateRebuild from filesystem state

Subagent Timeout Recovery

Detection:

// Subagent status: timed_out
{
  status: "timed_out",
  runtime: "6m26s",
  sessionKey: "..."
}

Recovery Steps:

async function handleTimeout(chapterNum) {
  // 1. Check for partial draft
  const draftPath = `01-drafts/chapter_${chapterNum}_draft.md`;
  const draftExists = await fileExists(draftPath);
  
  if (!draftExists) {
    // No draft at all → Full retry
    return await retryChapter(chapterNum, 'no_draft');
  }
  
  // 2. Parse progress from draft header
  const draft = await read({ file: draftPath });
  const progress = parseProgressHeader(draft);
  
  // 3. Decide: Resume vs Retry
  if (progress.words > 0) {
    // Has progress → Resume
    console.log(`Resuming Chapter ${chapterNum} at ${progress.words} words`);
    return await resumeChapter(chapterNum, progress.words);
  } else {
    // No progress → Retry
    console.log(`Retrying Chapter ${chapterNum} from start`);
    return await retryChapter(chapterNum, 'no_progress');
  }
}

async function retryChapter(chapterNum, reason) {
  const manifest = await readManifest();
  const retries = manifest.chapters[chapterNum].retries || 0;
  
  if (retries >= 3) {
    // Max retries → Manual intervention
    await notifyUser(`Chapter ${chapterNum} failed after 3 retries. Reason: ${reason}`);
    return { action: 'manual_intervention', reason };
  }
  
  // Update manifest
  manifest.chapters[chapterNum].retries = retries + 1;
  manifest.chapters[chapterNum].error = reason;
  await saveManifest(manifest);
  
  // Spawn retry subagent
  return await sessions_spawn({
    label: `NovelCraft-Chapter-${chapterNum}-Retry-${retries + 1}`,
    mode: "run",
    runtime: "subagent",
    task: `Rewrite Chapter ${chapterNum} (attempt ${retries + 2}). Previous: ${reason}`,
    runTimeoutSeconds: 3600
  });
}

Duplicate Subagent Prevention

Problem: Multiple subagents for same chapter.

Solution:

async function spawnChapterSafely(chapterNum, task) {
  // 1. List ALL active subagents
  const active = await subagents({ action: "list" });
  
  // 2. Find any for this chapter (fuzzy match)
  const existing = active.filter(s => 
    s.label.includes(`Chapter-${chapterNum}`)
  );
  
  // 3. Kill all existing
  for (const sub of existing) {
    console.log(`Killing existing: ${sub.label} (${sub.sessionKey})`);
    await subagents({ 
      action: "kill", 
      target: sub.sessionKey 
    });
  }
  
  // 4. Wait and verify
  await sleep(1000);
  const verify = await subagents({ action: "list" });
  const stillRunning = verify.filter(s => 
    s.label.includes(`Chapter-${chapterNum}`)
  );
  
  if (stillRunning.length > 0) {
    throw new Error(`Failed to kill ${stillRunning.length} subagents`);
  }
  
  // 5. Safe to spawn
  return await sessions_spawn({
    label: `NovelCraft-Chapter-${chapterNum}`,
    mode: "run",
    runtime: "subagent",
    task,
    runTimeoutSeconds: 3600
  });
}

Wrong Output Validation

Problem: Subagent returns wrong chapter or incomplete data.

Validation:

async function validateChapterOutput(chapterNum, content) {
  const errors = [];
  
  // 1. Check chapter number in content
  const chapterMatch = content.match(/Kapitel\s+(\d+)/i);
  if (chapterMatch && parseInt(chapterMatch[1]) !== chapterNum) {
    errors.push(`Wrong chapter number: expected ${chapterNum}, got ${chapterMatch[1]}`);
  }
  
  // 2. Check word count
  const words = countWords(content);
  const config = await readModuleConfig('chapters');
  if (words < config.min_words || words > config.max_words) {
    errors.push(`Word count ${words} outside range ${config.min_words}-${config.max_words}`);
  }
  
  // 3. Check for required content
  if (!content.includes('#')) {
    errors.push('Missing chapter title (H1)');
  }
  
  // 4. Return result
  return {
    valid: errors.length === 0,
    errors,
    word_count: words
  };
}

// Usage
const result = await validateChapterOutput(5, content);
if (!result.valid) {
  console.error('Validation failed:', result.errors);
  await retryChapter(5, 'validation_failed');
}

Manifest Recovery

Problem: Manifest out of sync with filesystem.

Reconstruction:

async function rebuildManifest(projectPath) {
  const manifest = {
    chapters: {}
  };
  
  // Scan 01-drafts/
  const drafts = await listFiles(`${projectPath}/01-drafts/chapter_*.md`);
  for (const draft of drafts) {
    const num = extractChapterNumber(draft);
    manifest.chapters[num] = manifest.chapters[num] || {};
    manifest.chapters[num].draft_file = draft;
    manifest.chapters[num].status = 'draft';
  }
  
  // Scan 02-chapters/
  const approved = await listFiles(`${projectPath}/02-chapters/chapter_*.md`);
  for (const chapter of approved) {
    const num = extractChapterNumber(chapter);
    manifest.chapters[num] = manifest.chapters[num] || {};
    manifest.chapters[num].approved_file = chapter;
    manifest.chapters[num].status = 'approved';
  }
  
  // Scan reviews
  const reviews = await listFiles(`${projectPath}/01-drafts/chapter_*_review.md`);
  for (const review of reviews) {
    const num = extractChapterNumber(review);
    if (manifest.chapters[num]) {
      manifest.chapters[num].review_file = review;
      if (manifest.chapters[num].status === 'draft') {
        manifest.chapters[num].status = 'reviewing';
      }
    }
  }
  
  await saveManifest(manifest);
  return manifest;
}

Best Practices Summary

  1. Always pre-check for existing subagents
  2. Always use extended timeout (3600s minimum)
  3. Always validate subagent output
  4. Always update manifest before and after subagent
  5. Always implement retry with max 3 attempts
  6. Always notify user on unrecoverable errors

Directory Structure

IMPORTANT: All project data (Books) lives in the workspace, not the skill folder!

Workspace (Project Data)

~/.openclaw/workspace/novelcraft/          ← Workspace (localized)
├── config/
│   ├── CONFIG-SCHEMA.md                  # Schema v3.0 documentation
│   ├── PROJECT-MANIFEST-TEMPLATE.md      # Project template
│   ├── module-concept.md                 # Module: Concept
│   ├── module-writer-extras.md           # Module: Prolog/Epilog
│   ├── module-images.md                  # Module: Images
│   ├── module-chapters.md                # Module: Chapters
│   └── module-publication.md             # Module: Publication
│
└── Books/projects/novel-[TITLE]/
    ├── project-manifest.md                # Central project manifest
    ├── 00-concept/                        # Concept, characters, worldbuilding
    ├── 01-drafts/                         # WIP chapters, reviews, revisions
    │   ├── chapter_01_draft.md
    │   ├── chapter_01_review.md
    │   └── chapter_01_review_v2.md
    ├── 02-chapters/                       # ✅ APPROVED final chapters
    │   ├── chapter_01.md
    │   └── chapter_02.md
    └── 03-final/                          # PDF, EPUB

~/.openclaw/skills/novelcraft/             ← Skill folder (read-only)
├── SKILL.md                               # This file
├── README.md                              # Quick start
├── CHANGELOG.md                           # Version history
├── CONTRIBUTING.md                        # Contribution guidelines
├── templates/                             # Module templates
│   ├── module-concept-template.md
│   ├── module-writer-extras-template.md
│   ├── module-images-template.md
│   ├── module-chapters-template.md
│   ├── module-review-template.md
│   ├── module-revision-template.md
│   └── module-publication-template.md
└── references/
    └── CONFIG.md                          # Config documentation

Workflow:

  1. Drafts in 01-drafts/
  2. Review → Revision if needed
  3. On APPROVED → Copy to 02-chapters/
  4. Publication reads only from 02-chapters/

Books Path: ~/.openclaw/workspace/novelcraft/Books/ (always load from workspace)

Modes

ModeBehavior
autonomousNo intermediate questions, runs through
step-by-stepConfirm after each module

Images (Optional)

Default: DISABLED — Images must be explicitly enabled in module-images.md.

Provider Options

ProviderDescriptionNetwork Calls
none (default)No image generationNo
mcpMCP serverDepends on MCP config
localLocal tools (e.g., MFLUX)No
manualUser provides imagesNo
apiExternal APIYes — data leaves machine

⚠️ Warning: Using api provider sends book content descriptions to external services. Review your provider's privacy policy.

Workflow

  • Never block — start generation, proceed to chapters
  • After completion: Create separate version with images

See references/CONFIG.md for detailed provider configuration.

Dashboard

Current: No dashboard available. NovelCraft works via command line.

Planned: Web-based dashboard for project monitoring and control.

  • Live progress for active projects
  • Chapter detail view with scores
  • Config editor in browser

See ROADMAP.md for details.

Audio (Planned)

Audiobook generation from completed chapters:

  • TTS integration (ElevenLabs, OpenAI, Local)
  • Character voices for dialogue
  • MP3/WAV export per chapter

See ROADMAP.md for details.

References

FilePurpose
SKILL.mdThis file — main documentation
README.mdQuick start guide
SECURITY.mdSecurity considerations
ROADMAP.mdFuture features (Dashboard, Audio)
CHANGELOG.mdVersion history
CONTRIBUTING.mdContribution guidelines
setup.mdChat-based setup (Quick-Start)
project-setup.mdChat commands for project management
references/CONFIG.mdDetailed config documentation
workspace/config/CONFIG-SCHEMA.mdSchema v3.0 specification
workspace/config/PROJECT-MANIFEST-TEMPLATE.mdProject manifest template

Target Audience Profiles (v3.2)

NEW: Select a profile to auto-configure all modules for your intended readers!

Available Profiles

ProfileAgeChapter LengthImagesFontUse Case
early-readers6-8800-1,200 words8+ chars, chapter images14ptPicture books, first readers
middle-grade8-121,500-2,500 words6 chars, chapter images12ptAdventure, fantasy
young-adult12-163,000-5,000 words4 chars11ptTeen themes, romance
new-adult16-254,000-6,000 words3 chars11ptComing-of-age
adult25+5,000-8,000 words3 chars10ptFull narrative freedom
senior60+3,000-5,000 words4 chars13ptLarge text, relaxed

What Auto-Configures?

ModuleSettings
ChaptersMin/max words, sentences/paragraph, max revisions
ImagesCharacter count, chapter images, settings
ConceptWording style, vocabulary complexity
PublicationFont size, line height, margins, font family

Usage

Setup: "Start NovelCraft Setup"
→ "Select target audience profile:"
   [1] early-readers (6-8)
   [2] middle-grade (8-12)
   [3] young-adult (12-16)
   [4] new-adult (16-25)
   [5] adult (25+)
   [6] senior (60+)
   [7] custom (manual)
→ User selects: 1
→ All modules auto-configure for 6-8 year olds!

Override Anytime

Keep profile, change one value:

"Change chapter target to 1500 words"
"Enable chapter images"

See setup.md for detailed profile specifications.


Image Configuration (v3.1)

Images are disabled by default (provider: none). When enabled, configure categories:

Image Categories

CategoryDefaultContains People?Description
Cover✅ yesYes (monsters/characters)Book cover artwork
Characters✅ yesYes (children)Main character portraits
Monsters✅ yesYes (monsters only)Monster portraits
Settings✅ yesNO (empty places)Location/environment images
Chapter Images❌ noScene-dependentOne illustration per chapter

Critical Image Rules

RuleDescription
English OnlyAll prompts must be in English (FLUX requirement)
No TextEvery prompt must include: "no text, no letters, no words, no typography"
Settings = EmptySettings images NEVER contain people, monsters, or characters
Negative PromptAlways add: "watermark, signature" to negative prompt

Prompt Examples

Cover:

Children's book cover illustration, four friendly colorful monsters standing in front of a school building, whimsical and playful style, soft pastel colors, storybook art style, magical atmosphere, no text, no letters, no words, no typography, no writing, no watermark, no signature

Character:

Children's book character portrait, young girl 7 years old, brown hair in pigtails, bright curious eyes, friendly smile, soft pastel colors, storybook illustration style, white background, no text, no letters, no words, no typography, no writing, no watermark, no signature

Setting (NO people):

Children's book illustration, cozy elementary school classroom interior, colorful desks and chairs neatly arranged, sunlight streaming through windows, empty room no children no teacher, warm atmosphere, storybook art style, no text, no letters, no words, no typography, no writing, no people, no characters, no humans, no monsters, no watermark, no signature

Chapter Image:

Children's book illustration, scene from chapter: monsters hiding in school closet, surprised expressions, playful mood, colorful and whimsical, storybook art style, no text, no letters, no words, no typography, no writing, no watermark, no signature

See setup.md for complete prompt guidelines and configuration details.


Quick Start

Project Management (New)

CommandAction
/novelcraft projectCreate new project
/novelcraft project listList all projects with status
/novelcraft project <number>Switch to project by number
/novelcraft project <name>Switch to project by name

Setup & Configuration

CommandAction
/novelcraft setupSetup/Reconfigure current project
/novelcraft setup imagesConfigure images module
/novelcraft setup chaptersConfigure chapters module
/novelcraft reconfigureReconfigure all modules
/novelcraft reconfigure imagesReconfigure images only

Help & Info

CommandAction
/novelcraft helpShow help
/novelcraft help imagesHelp for specific module
/novelcraft statusShow project status
NovelCraft --helpAlternative help syntax

Alternative Syntax

NovelCraft --project              # Create project
NovelCraft --project-list         # List projects
NovelCraft --setup
NovelCraft --setup --module=images
NovelCraft --reconfigure
NovelCraft --help
NovelCraft --status

Full Documentation

FilePurpose
setup.mdChat-based setup guide
project-setup.mdComplete command reference
references/CONFIG.mdConfig schema details

Version

Current: 3.2.0 — Target Audience Profiles & Enhanced Image Configuration

Maintained by: Felix (AI) with Ronny (User) 🧠💡

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

90.08%
按下载量换算985

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install novelcraft 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills