BeClaude

creative-writing

New
28Community RegistryGeneralby Grey Haven Studio ยท MIT

Complete creative writing suite with 8 specialized agents covering the full writing process: research, character development, story architecture, world-building, dialogue, editing, outlining, and content strategy.

First seen 5/22/2026

Overview

Version 2.1.0 - Hooks, Skills, configuration, and plugin marketplace for Claude Code

![npm version](https://www.npmjs.com/package/@greyhaven/claude-code-config) ![License: MIT](https://opensource.org/licenses/MIT)


๐ŸŽฏ What This Repository Provides

This repository contains Grey Haven Studio's comprehensive Claude Code ecosystem:

12 Plugin Packages with 26+ Agents and 30+ Commands

  • โ€ขDistributed via local plugin marketplace (not npm)
  • โ€ขClone this repository and configure in Claude Code settings

3 Claude Skills for automatic code assistance

  • โ€ขCode style enforcement (TypeScript, React, Python)
  • โ€ขCommit message formatting (Conventional Commits)
  • โ€ขPull request template generation

npm Package (@greyhaven/claude-code-config) for:

  • โ€ขโœ… Hook installation and management
  • โ€ขโœ… Skills installation and management
  • โ€ขโœ… MCP server configuration
  • โ€ขโœ… Project initialization
  • โ€ขโœ… Settings backup/restore
  • โ€ขโœ… Diagnostics

๐Ÿ“ฆ Installation

Option 1: Full Setup (Recommended)

Get plugins + CLI tools:

bash
# 1. Clone repository for plugins
git clone https://github.com/greyhaven-ai/grey-haven-claude-code-config.git ~/grey-haven-plugins

# 2. Configure plugin marketplace in ~/.claude/settings.json
{
  "plugin": {
    "marketplaces": [{
      "name": "grey-haven-plugins",
      "source": "/Users/YOU/grey-haven-plugins/grey-haven-plugins"
    }],
    "install": [
      "core@grey-haven-plugins",
      "developer-experience@grey-haven-plugins",
      "observability@grey-haven-plugins",
      "cc-trace@grey-haven-plugins"
    ]
  }
}

# 3. (Optional) Install CLI tools for hook management
npm install -g @greyhaven/claude-code-config
claude-config install-hooks

Option 2: Plugins Only

If you only need agents and commands:

bash
# Clone and configure plugin marketplace
git clone https://github.com/greyhaven-ai/grey-haven-claude-code-config.git ~/grey-haven-plugins

# Add to ~/.claude/settings.json (see full config above)

No npm package required!

Option 3: CLI Tools Only

If you only need hook installation and setup utilities:

bash
npm install -g @greyhaven/claude-code-config

๐Ÿš€ Quick Start

1. Install Hooks and Skills

bash
claude-config install-hooks
claude-config install-skills

2. Test Installation

bash
claude-config doctor

3. Use Skills and Plugins

Skills work automatically - just code naturally:

code
"Write a React component"     โ†’ code-style applies
"Create a commit message"     โ†’ commit-format applies
"Generate a PR description"   โ†’ pr-template applies

Use plugins via commands:

In Claude Code:

bash
/tdd-implement          # Test-driven development
/code-review            # Code review analysis
/security-scan          # Security audit
/doc-generate-api       # API documentation

๐Ÿ“ฆ Available Plugins

PluginDescription
coreTDD implementation, code review, quality pipeline, debugging
developer-experienceDocumentation, onboarding, API design, code style
testingPlaywright, Chrome E2E, visual regression testing
deploymentCloudflare Workers/Pages deployment and debugging
securityOWASP security scanning, vulnerability analysis
researchAPI research with Firecrawl, Context7, TanStack patterns
observabilityMonitoring, SLOs, metrics, performance tracking
incident-responseDebugging, runbooks, postmortem generation
agent-orchestrationContext management, workflow composition
data-qualityPydantic validation, schema contracts, data quality
linearLinear issue tracking, workflow integration
cc-traceClaude Code API debugging with mitmproxy
cloudflare-deployment-observabilityDeployment monitoring, CI/CD analytics
knowledge-baseOntological knowledge management, long-term memory
creative-writing8 specialized agents for the complete writing process

Total: 30+ agents, 40+ skills across 15 plugins

Install format: plugin-name@grey-haven-plugins (e.g., core@grey-haven-plugins)


๐Ÿ”ง CLI Commands

Hooks Management

bash
claude-config install-hooks         # Install hooks to ~/.claude/hooks/
claude-config list-hooks            # Show available hooks

Configuration

bash
claude-config init                  # Initialize .claude/ directory
claude-config backup-settings       # Backup user settings
claude-config restore-settings      # Restore from backup

Diagnostics

bash
claude-config doctor                # Diagnose installation
claude-config version               # Show version

๐Ÿ“š Documentation

  • โ€ข[Migration Guide](MIGRATION_V2.md) - Upgrade from v1.x to v2.0.0
  • โ€ข[npm Package README](README-npm.md) - CLI tool documentation
  • โ€ข[Installation Guide](INSTALLATION.md) - Detailed setup instructions
  • โ€ข[Architecture Plan](.claude/V2_ARCHITECTURE_PLAN.md) - v2.0.0 design decisions

๐Ÿ”„ Updating

Update Plugins

bash
cd ~/grey-haven-plugins
git pull origin main

Update CLI Tools

bash
npm update -g @greyhaven/claude-code-config
# Or: claude-config self-update

๐ŸŽฏ Key Features

26+ Specialized Agents

Core Functionality:

  • โ€ขdocs-architect - Technical documentation creation
  • โ€ขcode-quality-analyzer - Multi-mode code analysis
  • โ€ขtdd-python-implementer - Test-driven Python development
  • โ€ขtdd-typescript-implementer - Test-driven TypeScript development

Observability:

  • โ€ขobservability-architect - Monitoring setup
  • โ€ขsli-slo-engineer - SLI/SLO implementation

Security:

  • โ€ขsecurity-analyzer - Vulnerability scanning
  • โ€ขsecurity-audit-orchestrator - Comprehensive security audits

[See full agent catalog in plugins/](grey-haven-plugins/)

30+ Slash Commands

Development:

  • โ€ข/tdd-implement - TDD implementation workflow
  • โ€ข/code-review - Comprehensive code review
  • โ€ข/refactor-clarity - Clarity-focused refactoring

Documentation:

  • โ€ข/doc-generate-api - OpenAPI 3.1 generation
  • โ€ข/doc-coverage - Documentation coverage validation

Security & Quality:

  • โ€ข/security-scan - Security audit
  • โ€ข/quality-pipeline - Full quality check

[See full command catalog in plugins/](grey-haven-plugins/)

4 Production Hooks

  • โ€ขsubagent-context-preparer.py - Optimize subagent context
  • โ€ขsecurity-validator.py - Security validation
  • โ€ขprompt-enhancer.py - Enhance user prompts
  • โ€ขwork-completion-assistant.py - Work completion tracking

๐Ÿ†š v2.0.0 Changes

Featurev1.xv2.0.0
Plugin distributionโœ… npmโŒ Git + marketplace
Hooksโœ… npmโœ… npm (optional)
CLI toolsโœ… npmโœ… npm (optional)
Package size~2 MB~500 KB
Update methodnpm updategit pull + npm update

See [MIGRATION_V2.md](MIGRATION_V2.md) for complete migration guide.


๐Ÿ“‹ System Requirements

Required

  • โ€ขClaude Code installed
  • โ€ขGit

Optional

  • โ€ขPython 3.8+ (for hooks)
  • โ€ขNode.js 14+ (for npm CLI tools)

Check Installation

bash
claude-config doctor

๐Ÿค Contributing

Contributions welcome! See CONTRIBUTING.md.

Development Setup

bash
git clone https://github.com/greyhaven-ai/grey-haven-claude-code-config.git
cd grey-haven-claude-code-config
npm install

๐Ÿ“„ License

MIT ยฉ Grey Haven Studio


๐Ÿ”— Links

  • โ€ขGitHub: https://github.com/greyhaven-ai/grey-haven-claude-code-config
  • โ€ขnpm: https://www.npmjs.com/package/@greyhaven/claude-code-config
  • โ€ขIssues: https://github.com/greyhaven-ai/grey-haven-claude-code-config/issues

Built with โค๏ธ for the Claude Code community

Install & Usage

1
Add a marketplace
/plugin marketplace add <org/repo>
2
Install the plugin

Add the configuration to /plugin install creative-writing@<marketplace>

3
Manage with /plugin
/plugin
View source on GitHub
agentwritingcreativeblogfictionresearchmarketingcopywriting

Security Audits

LicensePassSourceWarnRepositoryPass

Frequently Asked Questions

What is creative-writing?

Complete creative writing suite with 8 specialized agents covering the full writing process: research, character development, story architecture, world-building, dialogue, editing, outlining, and content strategy.

How to install creative-writing?

To install creative-writing: add a marketplace (/plugin marketplace add <org/repo>), then add the config to /plugin install creative-writing@<marketplace>. Finally, /plugin in Claude Code.

What is creative-writing best for?

creative-writing is a plugin categorized under General. It is designed for: agent, writing, creative, blog, fiction, research, marketing, copywriting. Created by Grey Haven Studio.