backlog-add

Convert unstructured reports and notes into validated backlog entries.

34|12|Updated Aug 1, 2021
One-click install
npx skills add https://github.com/pear-studio/nonebot-dicepp --skill backlog-add-pear-studio
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: backlog-add
Source: https://github.com/pear-studio/nonebot-dicepp/tree/main/docs/agent/skills/backlog-add
Command: npx skills add https://github.com/pear-studio/nonebot-dicepp --skill backlog-add-pear-studio

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill turns scattered review notes, meeting minutes, or spoken user requirements into standardized backlog entries, so teams can triage and track follow-up work without losing important details.

Core Features & Use Cases

  • Structured Backlog Entry Generation: Produces backlog items with required fields like priority, type, effort, symptom, and work plan.
  • Multi-Input Support: Works in chat mode for guided field-by-field entry, file-parsing mode for batch intake from a provided document, or direct parameter mode for fast logging.
  • Validation & Guardrails: Enforces allowed values (P0/P1/P2, bug/feature/refactor, S/M/L/XL) and requires user confirmation via preview before writing.
  • Batch Creation with Safe Workflow: Generates separate IDs per item and then writes to docs/dev/backlog.md in an ordered manner (module → priority → type → effort), without modifying review documents or business code.

Quick Start

Tell the agent to add a backlog item by providing module, title, priority, type, effort, symptom, and plan, then confirm the preview it shows before it writes to the backlog.

Frequently Asked Questions about backlog-add

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I convert unstructured meeting notes into structured backlog items?

To convert meeting notes into structured backlog items, the Skill extracts delayed or TODO-like content from your reports and transforms it into standardized fields like priority, type, effort, symptom, and plan. It then appends these validated entries into your backlog document.

What is the best way to batch import requirements from a file into a backlog?

Batch importing requirements from a file into a backlog is handled by parsing the document to extract TODO-like content, generating separate IDs for each item, and writing them in an ordered manner to the backlog file. The Skill requires a user confirmation preview before executing the write operation.

Can I log backlog items directly by providing specific parameters?

Yes, you can log backlog items using a direct parameter mode for fast entry. You provide the module, title, priority, type, effort, symptom, and plan, and the Skill validates these fields against allowed value constraints before generating a preview for your confirmation.

What are the allowed priority and effort values when creating a backlog entry?

Allowed priority values for a backlog entry are P0, P1, and P2. Effort values must be S, M, L, or XL, and the type must be bug, feature, or refactor. The Skill enforces these constraints and requires strict field completeness before writing to the document.

Does the backlog creation process modify the original review documents?

No, the backlog creation process does not modify review documents or business code. It safely extracts information and writes only to the backlog document, ensuring your original review notes and meeting minutes remain unchanged during the structured entry generation.

Why does the Skill require a preview before appending items to the backlog?

A preview is required before appending items to the backlog to enforce validation and user confirmation. This guardrail ensures the extracted and transformed fields meet strict completeness and allowed value constraints, preventing incorrect or incomplete entries from being written into your document.