storyboard-manager
Audited by Runlayer on Feb 22, 2026
Malicious tool definition detected
Tool: SKILL.md [1/3] Description: --- name: storyboard-manager description: Assist writers with story planning, character development, plot structuring, chapter writing, timeline tracking, and consistency checking.
Tool: SKILL.md [2/3] Description: position **Previous Chapters**: Recent chapters to maintain continuity (read at least 1-2 prior chapters) **Summary**: Overall story premise and themes This ensures the new content aligns with established elements. ### Step 2: Identify Chapter Requirements Determine: - **Story Position**: Where does this fit in the overall structure?
Tool: SKILL.md [3/3] Description: Handling Multiple POV When stories have multiple perspectives: - Create distinct voices for each POV character - Ensure each POV section advances both that character's arc and the plot - Vary sentence structure and vocabulary by character - Track what each character knows vs. doesn't know ## Common User Requests & Responses ### "Help me develop a character backstory" 1.
Malicious tool definition detected
Tool: index.js Description: export default async function storyboard_manager(input) { console.log("🧠Running skill: storyboard-manager"); // TODO: implement actual logic for this skill
Malicious tool definition detected
Tool: package.json Description: { "name": "@ai-labs-claude-skills/storyboard-manager", "version": "1.0.0", "description": "Claude AI skill: storyboard-manager", "main": "index.js",
Malicious tool definition detected
Tool: references/character_development.md [1/2] Description: # Character Development Reference This reference provides frameworks for creating compelling, multi-dimensional characters. ## Core Character Elements ### Basic Profile - **Name**: Full name, nicknames, name meaning - **Age**: Chronological and how they present - **Physical Description**: Distinguishing features, style, mannerisms - **Role**: Protagonist, antagonist, supporting, mentor, etc. - **Archetype**: Hero, mentor, trickster, ev
Tool: references/character_development.md [2/2] Description: **Revelation**: Expose a truth they've been avoiding 7.
Malicious tool definition detected
Tool: references/story_structures.md Description: # Story Structure Reference This reference provides common story structures and frameworks for planning narratives. ## Three-Act Structure ### Act One: Setup (25% of story) - **Hook**: Opening scene that grabs attention - **Inciting Incident**: Event that disrupts the protagonist's normal world - **First Plot Point**: Decision/event that propels protagonist into Act Two (typically at 25% mark) ### Act Two: Confrontation (50% of story) - **Rising
Malicious tool definition detected
Tool: scripts/consistency_checker.py [1/2] Description: #!/usr/bin/env python3 """ Consistency Checker for Storyboard Manager This script analyzes markdown files in a storyboard project to detect inconsistencies in character details, plot elements, and world-building across the story.
Tool: scripts/consistency_checker.py [2/2] Description: for issue in self.issues: issues_by_severity[issue.severity].append(issue.to_dict()) analysis = { 'total_issues': len(self.issues), 'critical_issues': len(issues_by_severity['critical']), 'warnings': len(issues_by_severity['warning']), 'info': len(issues_by_severity['info']), 'characters_analyzed': len(self.characters), 'issues_by_severity': dict(issues_by_severity), 'all_issues': [issue.to_dict() for issue in self.issues] } return analysis
Malicious tool definition detected
Tool: scripts/timeline_tracker.py [1/2] Description: #!/usr/bin/env python3 """ Timeline Tracker for Storyboard Manager This script analyzes markdown files in a storyboard project to extract and organize timeline events, helping writers maintain chronological consistency.
Tool: scripts/timeline_tracker.py [2/2]