Skip to main content
Glama

novel_outline

Initialize, read, and update a novel's settings, characters, outline, hooks, and status card to keep your story bible consistent and organized.

Instructions

维护原创小说的创作资料(novels/创作资料/<书名>/):创作设定/主要人物/次要人物/剧情大纲/钩子记录/创作状态卡的初始化、读取与更新。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyNohook 时:本章结尾钩子(状态/悬念/时间场景)。
bookYes书名(novels/创作资料 下的子目录名)。
fileNoread 时指定(bible/characters-main/characters-minor/outline/hooks/status,省略=status)。
nameNocharacter 时:人物名。
roleNocharacter 时:main=主要人物 / minor=次要人物。
rootNo章节库根目录。
titleNochapter 时:本章标题/方向(一行)。
actionYesinit=初始化创作资料;read=读文件(bible/characters-main/characters-minor/outline/hooks/status);bible=写入创作设定;character=登记/提升人物;chapter=补大纲方向行;hook=回填某章结尾钩子;status=刷新创作状态卡。
numberNochapter/hook 时:章节号。
contentNobible(创作设定全文)/ status(状态卡全文)时用。
descriptionNocharacter 时:人物简介(目标/动机/弱点/说话方式)。

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full disclosure burden. It says materials are 'initialized, read, updated' but never states whether writes overwrite existing files, are idempotent, destructive, or require an existing directory — meaningful given this tool obviously mutates files on disk.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single dense sentence front-loads the resource scope and then enumerates the artifacts, with no filler. It is efficient, though the enumeration is long and slightly list-like rather than prioritized.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For an 11-parameter, 7-action tool with no annotations and no output schema, the description covers the scope of managed artifacts but not how the actions relate, what persists, or what a read returns. Adequate as a minimum but leaving gaps an agent would have to resolve from the schema alone.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so every parameter including the action and file enums is already documented inline. The description reinforces the file categories but adds no format, default, or interaction detail beyond the schema. Baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description gives a specific verb set (初始化、读取、更新) plus a concrete resource: the creative-material files under novels/创作资料/<书名>/. It enumerates the artifact types (创作设定/主要人物/次要人物/剧情大纲/钩子记录/创作状态卡), which maps well onto the file variants. It does not differentiate itself from the many siblings that also touch novel data, so it falls short of a 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no statement of when to choose this tool over novel_read, novel_books, novel_chapters, novel_plot or novel_settings, all of which plausibly overlap. No prerequisites, no exclusions, no ordering guidance. Usage must be inferred entirely from the action enum in the schema.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.