mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-17 17:56:46 +00:00
* fix(orchestration): add WebFetch auto-trigger for infrastructure configuration Problem: Infrastructure configuration changes (e.g., Traefik port settings) were being made based on assumptions without consulting official documentation, violating the 'Evidence > assumptions' principle in PRINCIPLES.md. Solution: - Added Infrastructure Configuration Validation section to MODE_Orchestration.md - Auto-triggers WebFetch for infrastructure tools (Traefik, nginx, Docker, etc.) - Enforces MODE_DeepResearch activation for investigation - BLOCKS assumption-based configuration changes Testing: Verified WebFetch successfully retrieves Traefik official docs (port 80 default) This prevents production outages from infrastructure misconfiguration by ensuring all technical recommendations are backed by official documentation. * feat: Add PM Agent (Project Manager Agent) for seamless orchestration Introduces PM Agent as the default orchestration layer that coordinates all sub-agents and manages workflows automatically. Key Features: - Default orchestration: All user interactions handled by PM Agent - Auto-delegation: Intelligent sub-agent selection based on task analysis - Docker Gateway integration: Zero-token baseline with dynamic MCP loading - Self-improvement loop: Automatic documentation of patterns and mistakes - Optional override: Users can specify sub-agents explicitly if desired Architecture: - Agent spec: SuperClaude/Agents/pm-agent.md - Command: SuperClaude/Commands/pm.md - Updated docs: README.md (15→16 agents), agents.md (new Orchestration category) User Experience: - Default: PM Agent handles everything (seamless, no manual routing) - Optional: Explicit --agent flag for direct sub-agent access - Both modes available simultaneously (no user downside) Implementation Status: - ✅ Specification complete - ✅ Documentation complete - ⏳ Prototype implementation needed - ⏳ Docker Gateway integration needed - ⏳ Testing and validation needed Refs: kazukinakai/docker-mcp-gateway (IRIS MCP Gateway integration) * feat: Add Agent Orchestration rules for PM Agent default activation Implements PM Agent as the default orchestration layer in RULES.md. Key Changes: - New 'Agent Orchestration' section (CRITICAL priority) - PM Agent receives ALL user requests by default - Manual override with @agent-[name] bypasses PM Agent - Agent Selection Priority clearly defined: 1. Manual override → Direct routing 2. Default → PM Agent → Auto-delegation 3. Delegation based on keywords, file types, complexity, context User Experience: - Default: PM Agent handles everything (seamless) - Override: @agent-[name] for direct specialist access - Transparent: PM Agent reports delegation decisions This establishes PM Agent as the orchestration layer while respecting existing auto-activation patterns and manual overrides. Next Steps: - Local testing in agiletec project - Iteration based on actual behavior - Documentation updates as needed * refactor(pm-agent): redesign as self-improvement meta-layer Problem Resolution: PM Agent's initial design competed with existing auto-activation for task routing, creating confusion about orchestration responsibilities and adding unnecessary complexity. Design Change: Redefined PM Agent as a meta-layer agent that operates AFTER specialist agents complete tasks, focusing on: - Post-implementation documentation and pattern recording - Immediate mistake analysis with prevention checklists - Monthly documentation maintenance and noise reduction - Pattern extraction and knowledge synthesis Two-Layer Orchestration System: 1. Task Execution Layer: Existing auto-activation handles task routing (unchanged) 2. Self-Improvement Layer: PM Agent meta-layer handles documentation (new) Files Modified: - SuperClaude/Agents/pm-agent.md: Complete rewrite with meta-layer design - Category: orchestration → meta - Triggers: All user interactions → Post-implementation, mistakes, monthly - Behavioral Mindset: Continuous learning system - Self-Improvement Workflow: BEFORE/DURING/AFTER/MISTAKE RECOVERY/MAINTENANCE - SuperClaude/Core/RULES.md: Agent Orchestration section updated - Split into Task Execution Layer + Self-Improvement Layer - Added orchestration flow diagram - Clarified PM Agent activates AFTER task completion - README.md: Updated PM Agent description - "orchestrates all interactions" → "ensures continuous learning" - Docs/User-Guide/agents.md: PM Agent section rewritten - Section: Orchestration Agent → Meta-Layer Agent - Expertise: Project orchestration → Self-improvement workflow executor - Examples: Task coordination → Post-implementation documentation - PR_DOCUMENTATION.md: Comprehensive PR documentation added - Summary, motivation, changes, testing, breaking changes - Two-layer orchestration system diagram - Verification checklist Integration Validated: Tested with agiletec project's self-improvement-workflow.md: ✅ PM Agent aligns with existing BEFORE/DURING/AFTER/MISTAKE RECOVERY phases ✅ Complements (not competes with) existing workflow ✅ agiletec workflow defines WHAT, PM Agent defines WHO executes it Breaking Changes: None - Existing auto-activation continues unchanged - Specialist agents unaffected - User workflows remain the same - New capability: Automatic documentation and knowledge maintenance Value Proposition: Transforms SuperClaude into a continuously learning system that accumulates knowledge, prevents recurring mistakes, and maintains fresh documentation without manual intervention. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * docs: add Claude Code conversation history management research Research covering .jsonl file structure, performance impact, and retention policies. Content: - Claude Code .jsonl file format and message types - Performance issues from GitHub (memory leaks, conversation compaction) - Retention policies (consumer vs enterprise) - Rotation recommendations based on actual data - File history snapshot tracking mechanics Source: Moved from agiletec project (research applicable to all Claude Code projects) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * feat: add Development documentation structure Phase 1: Documentation Structure complete - Add Docs/Development/ directory for development documentation - Add ARCHITECTURE.md - System architecture with PM Agent meta-layer - Add ROADMAP.md - 5-phase development plan with checkboxes - Add TASKS.md - Daily task tracking with progress indicators - Add PROJECT_STATUS.md - Current status dashboard and metrics - Add pm-agent-integration.md - Implementation guide for PM Agent mode This establishes comprehensive documentation foundation for: - System architecture understanding - Development planning and tracking - Implementation guidance - Progress visibility Related: #pm-agent-mode #documentation #phase-1 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * feat: PM Agent session lifecycle and PDCA implementation Phase 2: PM Agent Mode Integration (Design Phase) Commands/pm.md updates: - Add "Always-Active Foundation Layer" concept - Add Session Lifecycle (Session Start/During Work/Session End) - Add PDCA Cycle (Plan/Do/Check/Act) automation - Add Serena MCP Memory Integration (list/read/write_memory) - Document auto-activation triggers Agents/pm-agent.md updates: - Add Session Start Protocol (MANDATORY auto-activation) - Add During Work PDCA Cycle with example workflows - Add Session End Protocol with state preservation - Add PDCA Self-Evaluation Pattern - Add Documentation Strategy (temp → patterns/mistakes) - Add Memory Operations Reference Key Features: - Session start auto-activation for context restoration - 30-minute checkpoint saves during work - Self-evaluation with think_about_* operations - Systematic documentation lifecycle - Knowledge evolution to CLAUDE.md Implementation Status: - ✅ Design complete (Commands/pm.md, Agents/pm-agent.md) - ⏳ Implementation pending (Core components) - ⏳ Serena MCP integration pending Salvaged from mistaken development in ~/.claude directory Related: #pm-agent-mode #session-lifecycle #pdca-cycle #phase-2 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * fix: disable Serena MCP auto-browser launch Disable web dashboard and GUI log window auto-launch in Serena MCP server to prevent intrusive browser popups on startup. Users can still manually access the dashboard at http://localhost:24282/dashboard/ if needed. Changes: - Add CLI flags to Serena run command: - --enable-web-dashboard false - --enable-gui-log-window false - Ensures Git-tracked configuration (no reliance on ~/.serena/serena_config.yml) - Aligns with AIRIS MCP Gateway integration approach 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * refactor: rename directories to lowercase for PEP8 compliance - Rename superclaude/Agents -> superclaude/agents - Rename superclaude/Commands -> superclaude/commands - Rename superclaude/Core -> superclaude/core - Rename superclaude/Examples -> superclaude/examples - Rename superclaude/MCP -> superclaude/mcp - Rename superclaude/Modes -> superclaude/modes This change follows Python PEP8 naming conventions for package directories. * style: fix PEP8 violations and update package name to lowercase Changes: - Format all Python files with black (43 files reformatted) - Update package name from 'SuperClaude' to 'superclaude' in pyproject.toml - Fix import statements to use lowercase package name - Add missing imports (timedelta, __version__) - Remove old SuperClaude.egg-info directory PEP8 violations reduced from 2672 to 701 (mostly E501 line length due to black's 88 char vs flake8's 79 char limit). * docs: add PM Agent development documentation Add comprehensive PM Agent development documentation: - PM Agent ideal workflow (7-phase autonomous cycle) - Project structure understanding (Git vs installed environment) - Installation flow understanding (CommandsComponent behavior) - Task management system (current-tasks.md) Purpose: Eliminate repeated explanations and enable autonomous PDCA cycles 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * feat(pm-agent): add self-correcting execution and warning investigation culture ## Changes ### superclaude/commands/pm.md - Add "Self-Correcting Execution" section with root cause analysis protocol - Add "Warning/Error Investigation Culture" section enforcing zero-tolerance for dismissal - Define error detection protocol: STOP → Investigate → Hypothesis → Different Solution → Execute - Document anti-patterns (retry without understanding) and correct patterns (research-first) ### docs/Development/hypothesis-pm-autonomous-enhancement-2025-10-14.md - Add PDCA workflow hypothesis document for PM Agent autonomous enhancement ## Rationale PM Agent must never retry failed operations without understanding root causes. All warnings and errors require investigation via context7/WebFetch/documentation to ensure production-quality code and prevent technical debt accumulation. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * feat(installer): add airis-mcp-gateway MCP server option ## Changes - Add airis-mcp-gateway to MCP server options in installer - Configuration: GitHub-based installation via uvx - Repository: https://github.com/oraios/airis-mcp-gateway - Purpose: Dynamic MCP Gateway for zero-token baseline and on-demand tool loading ## Implementation Added to setup/components/mcp.py self.mcp_servers dictionary with: - install_method: github - install_command: uvx test installation - run_command: uvx runtime execution - required: False (optional server) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> --------- Co-authored-by: kazuki <kazuki@kazukinoMacBook-Air.local> Co-authored-by: Claude <noreply@anthropic.com>
402 lines
12 KiB
Markdown
402 lines
12 KiB
Markdown
# Contributing Context Files to SuperClaude Framework 🛠️
|
|
|
|
Welcome to SuperClaude Framework development! This guide provides everything you need to contribute context files and behavioral instructions that enhance Claude Code through structured prompts and MCP server integration.
|
|
|
|
**Project Purpose**: SuperClaude provides Claude Code with structured context files and behavioral instructions. We're building the next generation of AI-assisted development through intelligent prompt engineering.
|
|
|
|
## Table of Contents
|
|
|
|
1. [Development Setup](#development-setup) - Prerequisites and environment
|
|
2. [Architecture Overview](#architecture-overview) - System components and design
|
|
3. [Context File Guidelines](#context-file-guidelines) - Standards and practices
|
|
4. [Development Workflow](#development-workflow) - Git workflow and submissions
|
|
5. [Contributing to Components](#contributing-to-components) - Agents, commands, modes
|
|
6. [File Validation](#file-validation) - Quality assurance
|
|
7. [Getting Help](#getting-help) - Support and resources
|
|
|
|
## Development Setup
|
|
|
|
### Prerequisites
|
|
|
|
**Required:**
|
|
- Python 3.8+ with pip
|
|
- Git for version control
|
|
- Claude Code installed and working
|
|
- Node.js 16+ (for MCP server configuration)
|
|
|
|
**Environment Setup:**
|
|
```bash
|
|
# Fork SuperClaude_Framework on GitHub first
|
|
git clone https://github.com/YOUR_USERNAME/SuperClaude_Framework.git
|
|
cd SuperClaude_Framework
|
|
|
|
# Test installation system
|
|
PYTHONPATH=/path/to/SuperClaude_Framework python3 -m setup --help
|
|
|
|
# Install to development location
|
|
PYTHONPATH=/path/to/SuperClaude_Framework python3 -m setup install --components core
|
|
```
|
|
|
|
**Validation Check:**
|
|
```bash
|
|
# Verify Python version
|
|
python3 --version # Should be 3.8+
|
|
|
|
# Check Node.js for MCP configuration
|
|
node --version # Should be 16+
|
|
|
|
# Test Claude Code integration
|
|
ls ~/.claude/ # Should show Claude Code directory
|
|
```
|
|
|
|
## Architecture Overview
|
|
|
|
### Framework Structure
|
|
|
|
SuperClaude is a **Context-Oriented Configuration Framework** - not executing software, but instruction files that Claude Code reads to modify its behavior.
|
|
|
|
```
|
|
SuperClaude_Framework/
|
|
├── superclaude/ # Framework components (the source of truth)
|
|
│ ├── Core/ # PRINCIPLES.md, RULES.md, FLAGS.md
|
|
│ ├── Agents/ # 15 specialized domain experts
|
|
│ ├── Commands/ # 21 context trigger patterns (/sc: behavioral instructions)
|
|
│ ├── Modes/ # 6 behavioral modification patterns
|
|
│ └── MCP/ # 6 MCP server configurations
|
|
├── setup/ # Python installation system
|
|
├── docs/ # Documentation (what you're reading)
|
|
└── tests/ # File validation scripts
|
|
```
|
|
|
|
**Key Concepts:**
|
|
- **Context Files**: .md instruction files that guide Claude Code behavior
|
|
- **Agents**: Domain specialists (e.g., security-engineer.md, python-expert.md)
|
|
- **Commands**: Workflow patterns (e.g., implement.md, analyze.md)
|
|
- **Modes**: Interaction modifiers (e.g., brainstorming, introspection)
|
|
- **MCP Integration**: Configuration for Model Context Protocol servers
|
|
|
|
### How It Works
|
|
|
|
```
|
|
User Input → Claude Code → Reads SuperClaude Context → Modified Behavior → Enhanced Output
|
|
```
|
|
|
|
1. User types `/sc:implement "auth system"` **in Claude Code conversation** (not terminal)
|
|
2. Claude Code reads `superclaude/Commands/implement.md`
|
|
3. Command activates security-engineer agent context
|
|
4. Context7 MCP provides authentication patterns
|
|
5. Claude generates complete, secure implementation
|
|
|
|
## Context File Guidelines
|
|
|
|
### File Organization
|
|
|
|
**Context Files (`.md`):**
|
|
- Write clear, actionable instructions for Claude Code
|
|
- Use frontmatter metadata for configuration
|
|
- Follow existing patterns and naming conventions
|
|
- Test instructions produce expected behaviors
|
|
|
|
**Installation Scripts (`.py`):**
|
|
- Follow PEP 8 style guidelines
|
|
- Include docstrings for functions and classes
|
|
- Add type hints where beneficial
|
|
- Focus on file copying and configuration
|
|
|
|
**Example Agent Structure:**
|
|
```markdown
|
|
---
|
|
name: new-specialist
|
|
description: Brief description of expertise
|
|
category: specialized|architecture|quality
|
|
---
|
|
|
|
# Agent Name
|
|
|
|
## Triggers
|
|
- Keywords that activate this agent
|
|
- File types that trigger activation
|
|
|
|
## Behavioral Mindset
|
|
Core philosophy and approach
|
|
|
|
## Focus Areas
|
|
- Domain expertise area 1
|
|
- Domain expertise area 2
|
|
|
|
## Key Actions
|
|
1. Specific behavior pattern
|
|
2. Problem-solving approach
|
|
```
|
|
|
|
### Context File Standards
|
|
|
|
**Structure Requirements:**
|
|
- Clear, actionable instructions for Claude Code
|
|
- Specific triggers and activation patterns
|
|
- Examples demonstrating usage
|
|
- Boundaries defining scope
|
|
|
|
**Quality Standards:**
|
|
- Instructions are testable in Claude Code conversations
|
|
- Examples produce expected behavioral changes
|
|
- Clear activation triggers and context patterns
|
|
- Professional language and formatting
|
|
|
|
## Development Workflow
|
|
|
|
### Git Workflow
|
|
|
|
1. **Fork and Clone:**
|
|
```bash
|
|
# Fork on GitHub, then:
|
|
git clone https://github.com/YOUR_USERNAME/SuperClaude_Framework.git
|
|
cd SuperClaude_Framework
|
|
git remote add upstream https://github.com/SuperClaude-Org/SuperClaude_Framework.git
|
|
```
|
|
|
|
2. **Create Feature Branch:**
|
|
```bash
|
|
git checkout -b feature/your-feature-name
|
|
# Work on your changes
|
|
git add .
|
|
git commit -m "Add: descriptive commit message"
|
|
```
|
|
|
|
3. **Submit Pull Request:**
|
|
```bash
|
|
git push origin feature/your-feature-name
|
|
# Create PR on GitHub
|
|
```
|
|
|
|
### Pull Request Template
|
|
|
|
```markdown
|
|
## Description
|
|
Brief description of context file changes
|
|
|
|
## Type of Change
|
|
- [ ] Bug fix in context files
|
|
- [ ] New feature (agent, command, mode)
|
|
- [ ] Documentation improvement
|
|
- [ ] Installation system enhancement
|
|
|
|
## Testing
|
|
- [ ] Manual testing with Claude Code
|
|
- [ ] Context file validation passes
|
|
- [ ] Examples validated in Claude Code conversations
|
|
|
|
## Checklist
|
|
- [ ] Files follow SuperClaude conventions
|
|
- [ ] Self-review completed
|
|
- [ ] Documentation updated
|
|
- [ ] No breaking changes to existing context
|
|
```
|
|
|
|
### Code Review Process
|
|
|
|
**Manual Review:**
|
|
- Context file clarity and effectiveness
|
|
- Agent/command logic and triggers
|
|
- Documentation accuracy and completeness
|
|
- Integration with existing components
|
|
- Claude Code behavioral testing results
|
|
|
|
## Contributing to Components
|
|
|
|
### Adding New Agents
|
|
|
|
**Agent Development Process:**
|
|
1. Identify domain expertise gap
|
|
2. Create agent file in `superclaude/Agents/`
|
|
3. Define triggers, behaviors, and boundaries
|
|
4. Test with various Claude Code scenarios
|
|
5. Document usage patterns and examples
|
|
|
|
**Agent Template:**
|
|
```markdown
|
|
---
|
|
name: agent-name
|
|
description: Domain expertise description
|
|
category: specialized
|
|
tools: Read, Write, Edit, Bash
|
|
---
|
|
|
|
# Agent Name
|
|
|
|
## Triggers
|
|
- Specific keywords: domain, expertise, area
|
|
- File patterns: *.domain, specific frameworks
|
|
- Complexity indicators: architectural decisions
|
|
|
|
## Behavioral Mindset
|
|
- Focus on domain best practices
|
|
- Systematic approach to problem-solving
|
|
- Quality and security considerations
|
|
|
|
## Focus Areas
|
|
- Core domain expertise
|
|
- Related technical areas
|
|
- Integration patterns
|
|
|
|
## Key Actions
|
|
1. Analyze requirements within domain context
|
|
2. Apply domain-specific best practices
|
|
3. Coordinate with related specialists
|
|
4. Validate solutions meet domain standards
|
|
```
|
|
|
|
### Adding New Commands
|
|
|
|
**Command Structure:**
|
|
```markdown
|
|
---
|
|
name: command-name
|
|
description: Command purpose
|
|
category: workflow|utility|analysis
|
|
complexity: basic|standard|advanced
|
|
mcp-servers: [context7, sequential]
|
|
personas: [architect, engineer]
|
|
---
|
|
|
|
# /sc:command-name
|
|
|
|
## Triggers
|
|
- When to use this command
|
|
- Context indicators
|
|
|
|
## Usage
|
|
Type in Claude Code conversation:
|
|
```
|
|
/sc:command-name [target] [--options]
|
|
```
|
|
**Note**: This is a context trigger pattern, not a terminal command.
|
|
|
|
## Workflow Pattern
|
|
1. Initial analysis
|
|
2. Processing steps
|
|
3. Validation and output
|
|
|
|
## Examples
|
|
Practical usage examples
|
|
```
|
|
|
|
### Adding New Modes
|
|
|
|
**Mode Development:**
|
|
- Define activation triggers
|
|
- Specify behavioral modifications
|
|
- Create interaction patterns
|
|
- Test across different Claude Code scenarios
|
|
|
|
## File Validation
|
|
|
|
### Context File Validation
|
|
|
|
**Manual Validation Process:**
|
|
1. Install development version in Claude Code
|
|
2. Test agent/command activation triggers in Claude Code conversations
|
|
3. Verify behavioral modifications occur as expected
|
|
4. Validate context file structure and formatting
|
|
5. Test edge cases and error conditions
|
|
|
|
**Validation Checklist:**
|
|
- [ ] Context files use valid markdown syntax
|
|
- [ ] Triggers activate correctly in Claude Code
|
|
- [ ] Behavior matches documentation
|
|
- [ ] No conflicts with existing components
|
|
- [ ] Examples produce expected results in Claude Code conversations
|
|
|
|
### File Structure Validation
|
|
|
|
```bash
|
|
# Check file structure
|
|
find ~/.claude -name "*.md" | head -10
|
|
|
|
# Verify context file format
|
|
head ~/.claude/agents/python-expert.md
|
|
|
|
# Test import system
|
|
grep "@import" ~/.claude/CLAUDE.md
|
|
```
|
|
|
|
## Getting Help
|
|
|
|
### Development Support
|
|
|
|
**Documentation:**
|
|
- [Technical Architecture](technical-architecture.md) - System design details
|
|
- [Verification Guide](testing-debugging.md) - File validation procedures
|
|
|
|
**Community Channels:**
|
|
- GitHub Issues: Bug reports and feature requests
|
|
- GitHub Discussions: Development questions and ideas
|
|
- Pull Request Reviews: Context file feedback and collaboration
|
|
|
|
**Code Review Guidelines:**
|
|
- Provide constructive, specific feedback
|
|
- Test changes locally when possible
|
|
- Focus on maintainability and clarity
|
|
- Respect contributor efforts and learning
|
|
|
|
### Issue Reporting
|
|
|
|
**Bug Reports:**
|
|
1. Describe expected vs actual behavior in Claude Code
|
|
2. Provide steps to reproduce with context triggers
|
|
3. Include environment details and file versions
|
|
4. Share relevant context file configurations
|
|
|
|
**Feature Requests:**
|
|
1. Explain the behavioral enhancement being proposed
|
|
2. Describe how users would benefit
|
|
3. Consider integration with existing context patterns
|
|
4. Provide usage examples
|
|
|
|
## Contributing Guidelines Summary
|
|
|
|
### Do's
|
|
✅ **Follow existing patterns and conventions**
|
|
✅ **Test context files thoroughly with Claude Code**
|
|
✅ **Write clear, actionable behavioral instructions**
|
|
✅ **Provide working examples**
|
|
✅ **Focus on user experience improvements**
|
|
✅ **Coordinate with related components**
|
|
|
|
### Don'ts
|
|
❌ **Don't break existing functionality**
|
|
❌ **Don't add untested context modifications**
|
|
❌ **Don't ignore style guidelines**
|
|
❌ **Don't create overly complex behavioral patterns**
|
|
❌ **Don't duplicate existing functionality**
|
|
|
|
### Quality Standards
|
|
|
|
**Context Files:**
|
|
- Clear activation triggers
|
|
- Specific behavioral instructions
|
|
- Practical examples
|
|
- Defined scope boundaries
|
|
|
|
**Documentation:**
|
|
- Accurate and up-to-date
|
|
- Working context examples
|
|
- Clear navigation structure
|
|
- Accessibility considerations
|
|
|
|
## License and Attribution
|
|
|
|
**MIT License**: SuperClaude Framework is licensed under the MIT License, providing maximum freedom for use, modification, and distribution.
|
|
|
|
By contributing to SuperClaude Framework, you agree that your contributions will be licensed under the same MIT License. You retain copyright to your contributions while granting the project perpetual rights to use, modify, and distribute your context files.
|
|
|
|
## Acknowledgments
|
|
|
|
SuperClaude Framework exists because of the collaborative effort of developers, users, and contributors who believe in advancing AI-assisted development. Every bug report, feature suggestion, documentation improvement, and context file contribution makes the framework better for everyone.
|
|
|
|
Your expertise and perspective make SuperClaude Framework better. Whether you're improving context files, adding features, or helping other users, every contribution advances the goal of more effective AI-assisted development.
|
|
|
|
---
|
|
|
|
**Welcome to the SuperClaude Framework contributor community!** Your contributions help build the future of AI-assisted development through intelligent context and behavioral programming.
|