* Fix: Install only selected MCP servers and ensure valid empty backups This commit addresses two separate issues: 1. **MCP Installation:** The `install` command was installing all MCP servers instead of only the ones selected by the user. The `_install` method in `setup/components/mcp.py` was iterating through all available servers, not the user's selection. This has been fixed to respect the `selected_mcp_servers` configuration. A new test has been added to verify this fix. 2. **Backup Creation:** The `create_backup` method in `setup/core/installer.py` created an invalid `.tar.gz` file when the backup source was empty. This has been fixed to ensure that a valid, empty tar archive is always created. A test was added for this as well. Co-authored-by: Mithun Gowda B <mithungowda.b7411@gmail.com> Co-authored-by: Jules <jules-ai-assistant@users.noreply.github.com> * Fix: Correct installer validation for MCP and MCP Docs components This commit fixes a validation issue in the installer where it would incorrectly fail after a partial installation of MCP servers. The `MCPComponent` validation logic was checking for all "required" servers, regardless of whether they were selected by the user. This has been corrected to only validate the servers that were actually installed, by checking against the list of installed servers stored in the metadata. The metadata storage has also been fixed to only record the installed servers. The `MCPDocsComponent` was failing validation because it was not being registered in the metadata if no documentation files were installed. This has been fixed by ensuring the post-installation hook runs even when no files are copied. New tests have been added for both components to verify the corrected logic. Co-authored-by: Mithun Gowda B <mithungowda.b7411@gmail.com> Co-authored-by: Jules <jules-ai-assistant@users.noreply.github.com> * Fix: Allow re-installation of components and correct validation logic This commit fixes a bug that prevented new MCP servers from being installed on subsequent runs of the installer. It also fixes the validation logic that was causing failures after a partial installation. The key changes are: 1. A new `is_reinstallable` method has been added to the base `Component` class. This allows certain components (like the `mcp` component) to be re-run even if they are already marked as installed. 2. The installer logic has been updated to respect this new method. 3. The `MCPComponent` now correctly stores only the installed servers in the metadata. 4. The validation logic for `MCPComponent` and `MCPDocsComponent` has been corrected to prevent incorrect failures. New tests have been added to verify all aspects of the new logic. Co-authored-by: Mithun Gowda B <mithungowda.b7411@gmail.com> Co-authored-by: Jules <jules-ai-assistant@users.noreply.github.com> * feat: Display authors in UI header and update author info This commit implements the user's request to display author names and emails in the UI header of the installer. The key changes are: 1. The `__email__` field in `SuperClaude/__init__.py` has been updated to include both authors' emails. 2. The `display_header` function in `setup/utils/ui.py` has been modified to read the author and email information and display it. 3. A new test has been added to `tests/test_ui.py` to verify the new UI output. Co-authored-by: Mithun Gowda B <mithungowda.b7411@gmail.com> Co-authored-by: Jules <jules-ai-assistant@users.noreply.github.com> * feat: Version bump to 4.1.0 and various fixes This commit prepares the project for the v4.1.0 release. It includes a version bump across all relevant files and incorporates several bug fixes and feature enhancements from recent tasks. Key changes in this release: - **Version Bump**: The project version has been updated from 4.0.9 to 4.1.0 in all configuration files, documentation, and source code. - **Installer Fixes**: - Components can now be marked as `reinstallable`, allowing them to be re-run on subsequent installations. This fixes a bug where new MCP servers could not be added. - The validation logic for `mcp` and `mcp_docs` components has been corrected to avoid incorrect failures. - A bug in the backup creation process that created invalid empty archives has been fixed. - **UI Enhancements**: - Author names and emails are now displayed in the installer UI header. - **Metadata Updates**: - Mithun Gowda B has been added as an author. - **New Tests**: - Comprehensive tests have been added for the installer logic, MCP components, and UI changes to ensure correctness and prevent regressions. Co-authored-by: Mithun Gowda B <mithungowda.b7411@gmail.com> Co-authored-by: Jules <jules-ai-assistant@users.noreply.github.com> * fix: Resolve dependencies for partial installs and other fixes This commit addresses several issues, the main one being a dependency resolution failure during partial installations. Key changes: - **Dependency Resolution**: The installer now correctly resolves the full dependency tree when a user requests to install a subset of components. This fixes the "Unknown component: core" error. - **Component Re-installation**: A new `is_reinstallable` flag allows components like `mcp` to be re-run on subsequent installs, enabling the addition of new servers. - **Validation Logic**: The validation for `mcp` and `mcp_docs` has been corrected to avoid spurious failures. - **UI and Metadata**: Author information has been added to the UI header and source files. - **Version Bump**: The project version has been updated to 4.1.0. - **Tests**: New tests have been added to cover all the above changes. Co-authored-by: Mithun Gowda B <mithungowda.b7411@gmail.com> Co-authored-by: Jules <jules-ai-assistant@users.noreply.github.com> * fix: Installer fixes and version bump to 4.1.0 This commit includes a collection of fixes for the installer logic, UI enhancements, and a version bump to 4.1.0. Key changes: - **Dependency Resolution**: The installer now correctly resolves the full dependency tree for partial installations, fixing the "Unknown component: core" error. - **Component Re-installation**: A new `is_reinstallable` flag allows components like `mcp` to be re-run to add new servers. - **MCP Installation**: The non-interactive installation of the `mcp` component now correctly prompts the user to select servers. - **Validation Logic**: The post-installation validation logic has been corrected to only validate components from the current session and to use the correct list of installed servers. - **UI & Metadata**: Author information has been added to the UI and source files. - **Version Bump**: The project version has been updated from 4.0.9 to 4.1.0 across all files. - **Tests**: New tests have been added to cover all the bug fixes. Co-authored-by: Mithun Gowda B <mithungowda.b7411@gmail.com> Co-authored-by: Jules <jules-ai-assistant@users.noreply.github.com> * feat: Add --authors flag and multiple installer fixes This commit introduces the `--authors` flag to display author information and includes a collection of fixes for the installer logic. Key changes: - **New Feature**: Added an `--authors` flag that displays the names, emails, and GitHub usernames of the project authors. - **Dependency Resolution**: Fixed a critical bug where partial installations would fail due to unresolved dependencies. - **Component Re-installation**: Added a mechanism to allow components to be "reinstallable", fixing an issue that prevented adding new MCP servers on subsequent runs. - **MCP Installation**: The non-interactive installation of the `mcp` component now correctly prompts for server selection. - **Validation Logic**: Corrected the post-installation validation to prevent spurious errors. - **Version Bump**: The project version has been updated to 4.1.0. - **Metadata**: Author and GitHub information has been added to the source files. - **UI**: The installer header now displays author information. - **Tests**: Added new tests for all new features and bug fixes. Co-authored-by: Mithun Gowda B <mithungowda.b7411@gmail.com> Co-authored-by: Jules <jules-ai-assistant@users.noreply.github.com> * Add Docker support and framework enhancements - Add serena-docker.json MCP configuration - Update MCP configs and installer components - Enhance CLI commands with new functionality - Add symbols utility for framework operations - Improve UI and logging components ð€ Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering> * Bump version from 4.1.1 to 4.1.2 - Update version across all package files - Update documentation and README files - Update Python module version strings - Update feature configuration files ð€ Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering> Co-Authored-By: Mithun Gowda B <mithungowda.b7411@gmail.com> * Bump version from 4.1.2 to 4.1.3 - Update version across all package files - Update documentation and README files - Update Python module version strings - Update feature configuration files ð€ Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering> Co-Authored-By: Mithun Gowda B <mithungowda.b7411@gmail.com> * Fix home directory detection for immutable distros - Add get_home_directory() function to handle /var/home/$USER paths - Support Fedora Silverblue, Universal Blue, and other immutable distros - Replace all Path.home() calls throughout the setup system - Add fallback methods for edge cases and compatibility - Create test script for immutable distro validation Fixes: - Incorrect home path detection on immutable Linux distributions - Installation failures on Fedora Silverblue/Universal Blue - Issues with Claude Code configuration paths Technical changes: - New get_home_directory() in utils/environment.py - Updated all CLI commands, validators, and core components - Maintains backward compatibility with standard systems - Robust fallback chain for edge cases ð€ Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering> Co-Authored-By: Mithun Gowda B <mithungowda.b7411@gmail.com> * Fix circular import and complete immutable distro support - Move get_home_directory() to separate paths.py module - Resolve circular import between environment.py and logger.py - Update all import statements across the setup system - Verify functionality with comprehensive testing Technical changes: - Created setup/utils/paths.py for path utilities - Updated imports in all affected modules - Maintains full backward compatibility - Fixes installation on immutable distros Testing completed: - â Basic home directory detection works - â Installation system integration works - â Environment utilities integration works - â Immutable distro logic validated ð€ Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering> Co-Authored-By: Mithun Gowda B <mithungowda.b7411@gmail.com> * Fix mcp_docs installation bugs - Fix mcp_docs component incorrectly marking as installed when no MCP servers selected - Add MCP server selection prompt when mcp_docs component is explicitly requested - Return False instead of calling _post_install() when no servers selected or files found - Add user-friendly warning when mcp_docs requested without server selection - Remove mcp_docs from installation when no servers are available ð€ Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering> * Fix MCP server name mapping for documentation files - Add mapping for sequential-thinking -> MCP_Sequential.md - Add mapping for morphllm-fast-apply -> MCP_Morphllm.md - Ensures mcp_docs installation works with all MCP server naming conventions ð€ Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering> * Enable mcp_docs component reinstallation - Add is_reinstallable() method returning True to allow repeat installations - Fixes issue where mcp_docs was skipped on subsequent installation attempts - Enables users to change MCP server selections and update documentation ð€ Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering> * Fix repeat installation issues for mcp_docs - Ensure mcp component is auto-added when mcp_docs is selected with servers - Fix component_files tracking to only include successfully copied files - Ensures CLAUDE.md gets properly updated with MCP documentation imports - Fixes issue where MCP servers weren't installed on repeat attempts ð€ Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering> * Fix MCP component metadata tracking and debug logging - Fix servers_count to track actually installed servers instead of total available - Add installed_servers list to metadata for better tracking - Add debug logging to trace component auto-addition - Ensures MCP component appears properly in metadata when servers are installed ð€ Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering> * Fix pyproject.toml license format and add missing classifier - Fix license format from string to {text = "MIT"} format - Add missing "License :: OSI Approved :: MIT License" classifier - Fix indentation consistency in classifiers section - Resolves setup.py installation errors and PEP 621 compliance ð€ Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering> * Fix MCP incremental installation and auto-detection system PROBLEM FIXED: - MCP component only registered servers selected during current session - mcp_docs component only installed docs for newly selected servers - Users had to reinstall everything when adding new MCP servers - Installation failed if no servers selected but servers existed SOLUTION IMPLEMENTED: - Add auto-detection of existing MCP servers from config files (.claude.json, claude_desktop_config.json) - Add CLI detection via 'claude mcp list' output parsing - Add smart server merging (existing + selected + previously installed) - Add server name normalization for common variations - Fix CLI logic to allow mcp_docs installation without server selection - Add graceful error handling for corrupted configs KEY FEATURES: â Auto-detects existing MCP servers from multiple config locations â Supports incremental installation (add new servers without breaking existing) â Works with or without --install-dir argument â Handles server name variations (sequential vs sequential-thinking, etc.) â Maintains metadata persistence across installation sessions â Graceful fallback when config files are corrupted â Compatible with both interactive and non-interactive modes TESTED SCENARIOS: - Fresh installation with no MCP servers â - Auto-detection with existing servers â - Incremental server additions â - Mixed mode (new + existing servers) â - Error handling with corrupted configs â - Default vs custom installation directories â - Interactive vs command-line modes â Files changed: - setup/cli/commands/install.py: Allow mcp_docs auto-detection mode - setup/components/mcp.py: Add comprehensive auto-detection logic - setup/components/mcp_docs.py: Add auto-detection for documentation ð€ Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering> * Integrate SuperClaude framework flags into help command ENHANCEMENT: - Add comprehensive flag documentation to /sc:help command - Include all 25 SuperClaude framework flags with descriptions - Organize flags into logical categories (Mode, MCP, Analysis, Execution, Output) - Add practical usage examples showing flag combinations - Include flag priority rules and precedence hierarchy NEW SECTIONS ADDED: â Mode Activation Flags (5 flags): --brainstorm, --introspect, --task-manage, --orchestrate, --token-efficient â MCP Server Flags (8 flags): --c7, --seq, --magic, --morph, --serena, --play, --all-mcp, --no-mcp â Analysis Depth Flags (3 flags): --think, --think-hard, --ultrathink â Execution Control Flags (6 flags): --delegate, --concurrency, --loop, --iterations, --validate, --safe-mode â Output Optimization Flags (3 flags): --uc, --scope, --focus â Flag Priority Rules: Clear hierarchy and precedence guidelines â Usage Examples: 4 practical examples showing real-world flag combinations IMPACT: - Users can now discover all SuperClaude capabilities from /sc:help - Single source of truth for commands AND flags - Improved discoverability of advanced features - Clear guidance on flag usage and combinations - Help content nearly doubled (68 â 148 lines) with valuable reference information Files changed: - SuperClaude/Commands/help.md: Integrate FLAGS.md content with structured tables and examples ð€ Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering> * Remove non-existent commands from modes.md documentation PROBLEM FIXED: - Documentation contained references to fake/non-existent commands - Commands like sc:fix, sc:simple-pix, sc:update, sc:develop, sc:modernize, sc:simple-fix don't exist in CLI - Confusing users who try to use these commands and get errors - Inconsistency between documentation and actual SuperClaude command availability COMMANDS REMOVED/REPLACED: â /sc:simple-fix â â /sc:troubleshoot (real command) â /sc:develop â â /sc:implement (real command) â /sc:modernize â â /sc:improve (real command) AFFECTED FILES: - Docs/User-Guide/modes.md: Fixed all non-existent command references - Docs/User-Guide-jp/modes.md: Fixed Japanese translation with same issues - Docs/User-Guide-zh/modes.md: Fixed Chinese translation with same issues VERIFICATION: â All remaining /sc: commands verified to exist in SuperClaude/Commands/ â No more references to fake commands in any language version â Examples now use only real, working SuperClaude commands â User experience improved - no more confusion from non-working commands REAL COMMANDS REFERENCED: - /sc:analyze, /sc:brainstorm, /sc:help, /sc:implement - /sc:improve, /sc:reflect, /sc:troubleshoot - All verified to exist in CLI implementation ð€ Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering> * Version bump to 4.1.4 CHANGELOG: â Added comprehensive flag documentation to /sc:help command â Fixed MCP incremental installation and auto-detection system â Cleaned up documentation by removing non-existent commands â Enhanced user experience with complete capability reference VERSION UPDATES: - Updated VERSION file: 4.1.3 â 4.1.4 - Updated pyproject.toml: 4.1.3 â 4.1.4 - Updated package.json: 4.1.3 â 4.1.4 - Updated all Python __init__.py fallback versions - Updated all documentation references across all languages - Updated setup/data/features.json component versions - Updated CHANGELOG.md with comprehensive 4.1.4 release notes SCOPE OF CHANGES: ðŠ Core files: VERSION, pyproject.toml, package.json, __init__.py files ð Documentation: All .md files across English, Japanese, Chinese ð§ Setup files: features.json, base.py version references ð Project files: README files, CHANGELOG, SECURITY, CONTRIBUTING VERIFICATION: â No remaining 4.1.3 references found â 29 files now properly reference 4.1.4 â All language versions consistently updated â Package metadata properly versioned for distribution ð€ Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering> --------- Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com> Co-authored-by: Jules <jules-ai-assistant@users.noreply.github.com> Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: Happy <yesreply@happy.engineering>
36 KiB
SuperClaude è¡åã¢ãŒãã¬ã€ã ð§
â ã¯ã€ãã¯æ€èšŒ
ã³ãã³ãã䜿çšããŠã¢ãŒãããã¹ãããŸã/sc:ãã¢ãŒãã¯ã¿ã¹ã¯ã®è€éãã«åºã¥ããŠèªåçã«ã¢ã¯ãã£ãã«ãªããŸããã³ãã³ãã®å®å
šãªãªãã¡ã¬ã³ã¹ã«ã€ããŠã¯ãã³ãã³ãã¬ã€ããã芧ãã ããã
ã¯ã€ãã¯ãªãã¡ã¬ã³ã¹ããŒãã«
| ã¢ãŒã | ç®ç | èªåããªã¬ãŒ | éèŠãªè¡å | æé©ãªçšé |
|---|---|---|---|---|
| ð§ ãã¬ã€ã³ã¹ããŒãã³ã° | ã€ã³ã¿ã©ã¯ãã£ããªçºèŠ | ããã¬ã€ã³ã¹ããŒãã³ã°ããããã¶ãããæŒ ç¶ãšããèŠæ | ãœã¯ã©ãã¹åŒã®è³ªåãèŠä»¶ã®æœåº | æ°ãããããžã§ã¯ãã®èšç»ãäžæç¢ºãªèŠä»¶ |
| ð å ç | ã¡ã¿èªç¥åæ | ãšã©ãŒå埩ããæšè«ã®åæã | éæãªæèããŒã«ãŒïŒð€ãð¯ãð¡ïŒ | ãããã°ãåŠç¿ãæé©å |
| ð ã¿ã¹ã¯ç®¡ç | è€éãªèª¿æŽ | >3ã¹ãããã>2ãã£ã¬ã¯ã㪠| çžã®åŽ©å£ãèšæ¶ã®æç¶ | 倿®µéæäœããããžã§ã¯ã管ç |
| ð¯ ãªãŒã±ã¹ãã¬ãŒã·ã§ã³ | ã€ã³ããªãžã§ã³ããªããŒã«éžæ | è€æ°ã®ããŒã«ã䜿çšããæäœãé«ããªãœãŒã¹äœ¿çšç | æé©ãªããŒã«ã«ãŒãã£ã³ã°ã䞊åå®è¡ | è€éãªåæãããã©ãŒãã³ã¹ã®æé©å |
| â¡ ããŒã¯ã³å¹ç | å§çž®éä¿¡ | ã³ã³ããã¹ã䜿çšçãé«ãã--ucãã©ã° |
ã·ã³ãã«ã·ã¹ãã ãæšå®30ïœ50%ã®ããŒã¯ã³åæž | ãªãœãŒã¹ã®å¶çŽãå€§èŠæš¡ãªæäœ |
ã¯ããã«ïŒ2åã®æŠèŠïŒ
ã¢ãŒãã¯åäœæç€ºãéããŠã¢ã¯ãã£ãåãããŸã- Claude Code ã¯ã³ã³ããã¹ã ãã¡ã€ã«ãèªã¿åããã¿ã¹ã¯ã®ãã¿ãŒã³ãšè€éãã«åºã¥ããŠã©ã®ã¢ãŒãåäœãæ¡çšããããæ±ºå®ããŸãã
ç°¡åãªäŸ:
# Automatic activation examples
/sc:brainstorm "mobile app" # â Socratic discovery questions
/sc:implement "auth system" # â Multi-phase coordination
"--uc analyze large-codebase/" # â Compressed symbol output
æåãã©ã°ã䜿çšããå Žå:
- ç¹å®ã®åäœãå¿
èŠ:Â
--brainstormãã--introspect``--uc - åŠç¿/ãããã°ã®ããã®èªåæ€åºããªãŒããŒã©ã€ããã
- ç¹å®ã®å¶çŽïŒã¡ã¢ãªãæéãæçæ§ïŒã«åãããŠæé©åãã
ã¢ãŒãã®è©³çް
ð§ ãã¬ã€ã³ã¹ããŒãã³ã°ã¢ãŒã - ã€ã³ã¿ã©ã¯ãã£ããªçºèŠ
ç®ç: å ±åäœæ¥ã«ããçºèŠãéããŠãæŒ ç¶ãšããã¢ã€ãã¢ãæ§é åãããèŠä»¶ã«å€æããŸãã
èªåã¢ã¯ãã£ããŒã·ã§ã³ããªã¬ãŒ:
- æŒ ç¶ãšãããããžã§ã¯ããªã¯ãšã¹ã:ã...ãæ§ç¯ãããããã...ãäœæããããšèããŠããã
- æ¢çŽ¢ããŒã¯ãŒã: ãã¬ã€ã³ã¹ããŒãã³ã°ãæ¢çŽ¢ãè°è«ãçè§£ãäžæ
- äžç¢ºå®æ§ææšïŒããã¶ãããããããããããã§ãããããããªãã
- æåãã©ã°:Â
--brainstormã--bs
è¡åã®å€å:
- ãœã¯ã©ãã¹åŒè³ªåïŒé ããèŠä»¶ãæããã«ããããã«æãäžãã質åããã
- éæšå®çã¢ãããŒãïŒæšå®ãé¿ããçºèŠã®æ¹åæ§ãå°ã
- ååçãªããŒãããŒã·ããïŒæç€ºçãªçžè«ã§ã¯ãªããæ¢çŽ¢çã«ååããŸã
- èŠä»¶çµ±åïŒæŽå¯ãæ§é åãããæè¡æŠèŠã«å€æããŸã
- ã¯ãã¹ã»ãã·ã§ã³ã¡ã¢ãªïŒãã©ããŒã¢ããã®è°è«ã®ããã«çºèŠã®ã³ã³ããã¹ããç¶æãã
çµéšäŸ:
Standard Approach: "I'll build a user authentication system with JWT tokens..."
Brainstorming Approach:
"ð€ Let's explore this together:
- What specific user problems does auth solve for your app?
- Who are your users and what's their technical comfort level?
- Any existing systems or social logins to integrate with?
- What security/compliance requirements do you have?
ð Outcome: Detailed auth requirements brief ready for implementation"
æååºæº
- ããã«è§£æ±ºçãæç€ºããã®ã§ã¯ãªãã質åã§å¿çãã
- 質åã¯ãŠãŒã¶ãŒã®ããŒãºãæè¡çå¶çŽãããžãã¹ç®æšãæ¢ããŸã
- çºèŠããã»ã¹å šäœãéããŠååçãªå§¿å¢ãç¶æãã
- çµæãšããŠæ§é åãããèŠä»¶ãŸãã¯æè¡æŠèŠãäœæããŸã
æ€èšŒ: /sc:brainstorm "web app"ãŠãŒã¶ãŒãæ©èœããã¯ãããžãŒã«ã€ããŠè³ªåããå¿
èŠããããŸãã
**ãã¹ã:**æŒ ç¶ãšãããªã¯ãšã¹ãã¯ãæšæž¬ã§ã¯ãªãçºèŠã®ããã®è³ªåãåŒãèµ·ããå¿
èŠããããŸãã
**ãã§ãã¯:**ã¢ãŒãã¯ãåãäŒè©±å
ã®ãã©ããŒã¢ããã®è³ªåã§ãç¶æãããå¿
èŠããããŸãã
æé©ãªçµã¿åãã:
- â ã¿ã¹ã¯ç®¡çïŒèŠä»¶ã®çºèŠ â äœç³»çãªå®è£ èšç»
- â ãªãŒã±ã¹ãã¬ãŒã·ã§ã³ïŒèŠä»¶ã®æç¢ºå â å®è£ ã«æé©ãªããŒã«ã®éžæ
- æåãªãŒããŒã©ã€ã:Â
--brainstormãæç¢ºãªãèŠä»¶ã§ãã£ãŠã匷å¶çã«æ€åºããããã«äœ¿çšããŸã
ð å çã¢ãŒã - ã¡ã¿èªç¥åæ
ç®ç: åŠç¿ã®æé©åãšéæãªæææ±ºå®ã®ããã®æšè«ããã»ã¹ãå ¬éããŸãã
èªåã¢ã¯ãã£ããŒã·ã§ã³ããªã¬ãŒ:
- èªå·±åæã®èŠæ±ïŒãèªåã®æšè«ãåæãããããæ±ºå®ãæ¯ãè¿ãã
- ãšã©ãŒå埩ã·ããªãªãšèª¿æ»ãå¿ èŠãšããäºæããªãçµæ
- è€æ°ã®å®è¡å¯èœãªã¢ãããŒãã«ããè€éãªåé¡è§£æ±º
- æé©åã®æ©äŒã®ããã®ãã¿ãŒã³èªèã®å¿ èŠæ§
- æåãã©ã°:
--introspect
è¡åã®å€å:
- æšè«ã®éææ§: æèããã»ã¹ãæç¢ºãªããŒã«ãŒã§å ¬éããŸã (ð€ãð¯ãâ¡ãðãð¡)
- æææ±ºå®åæïŒéžæããžãã¯ãè©äŸ¡ãã代æ¿ã¢ãããŒããæ€èšãã
- ãã¿ãŒã³èªèïŒç¹°ãè¿ãããè¡åãšæ¹åã®æ©äŒãç¹å®ããŸã
- ã¡ã¿åŠç¿ïŒç¶ç¶çãªãã¬ãŒã ã¯ãŒã¯æ¹åã®ããã®æŽå¯ãæœåº
- ãã¬ãŒã ã¯ãŒã¯ã³ã³ãã©ã€ã¢ã³ã¹: SuperClaudeååãšå質ã²ãŒãã«ç §ãããŠã¢ã¯ã·ã§ã³ãæ€èšŒããŸã
çµéšäŸ:
Standard Approach: "I'll analyze this code structure and suggest improvements..."
Introspective Approach:
"ð§ Meta-Analysis: Why did I choose structural analysis over functional flow?
ð¯ Decision Logic: Saw class hierarchy â assumed OOP pattern dominance
ð Alternative Considered: Data flow analysis might reveal hidden dependencies
ð Evidence Check: File imports suggest functional composition, not OOP
ð¡ Learning: Need to analyze imports before choosing analysis strategy
â¡ Correction: Switching to functional flow analysis approach"
æé©ãªçµã¿åãã:
- â ã¿ã¹ã¯ç®¡ç: è€éãªãã§ãŒãºã®æ±ºå®ã«éæãªæšè«ãæäŸããŸã
- ä»»æã®ã¢ãŒã: ä»ã®ã¢ãŒãã®æäœã«æšè«ã®éææ§ã¬ã€ã€ãŒã远å ããŸã
- æåãªãŒããŒã©ã€ã:
--introspectåŠç¿ã»ãã·ã§ã³ãã¯ãŒã¯ãããŒã®ãããã°ã«äœ¿çšããŸã
ð ã¿ã¹ã¯ç®¡çã¢ãŒã - è€éãªèª¿æŽ
ç®ç: è€æ°ã¹ãããã®æäœã®ããã®ã»ãã·ã§ã³æ°žç¶æ§ãåããéå±€çãªã¿ã¹ã¯æ§æã
èªåã¢ã¯ãã£ããŒã·ã§ã³ããªã¬ãŒ:
- 3 ã€ä»¥äžã®èª¿æŽãããã¹ããããå¿ èŠãšããæäœ
- è€æ°ã®ãã¡ã€ã«/ãã£ã¬ã¯ã㪠ã¹ã³ãŒã (ãã£ã¬ã¯ããªã 2 ã€ä»¥äžããŸãã¯ãã¡ã€ã«æ°ã 3 ã€ä»¥äž)
- ãã§ãŒãºãšãã§ãã¯ãã€ã³ããå¿ èŠãšããè€éãªäŸåé¢ä¿
- å質æ¹åã®èŠæïŒç£šããæŽç·Žã匷å
- æåãã©ã°:Â
--task-manageã--delegate
è¡åã®å€å:
- éå±€çèšç»ïŒè€éãªäœæ¥ãèšç»âãã§ãŒãºâã¿ã¹ã¯âToDoæ§é ã«åå²ããŸã
- ã»ãã·ã§ã³ã®æ°žç¶æ§: äžæããã£ãŠããããžã§ã¯ãã®ã³ã³ããã¹ããšé²è¡ç¶æ³ãç¶æããŸã
- ã¡ã¢ãªçµ±å: ç¶æ ä¿åã®ããã« write_memory/read_memory ã䜿çšãã
- 鲿ãªãŒã±ã¹ãã¬ãŒã·ã§ã³: 远跡ã®ããã«ã¡ã¢ãªæŽæ°ãšTodoWriteã調æŽãã
- å質ã²ãŒã:ãã§ãŒãºéã®äœç³»çãªæ€èšŒãã§ãã¯ãã€ã³ããå®è£ ããŸã
çµéšäŸ:
Standard Approach: "I'll implement user authentication..." â Direct implementation
Task Management Approach:
"ð Multi-Phase Implementation Plan:
ð¯ Phase 1: Security Requirements Analysis (Session 1)
ð¯ Phase 2: API Design & Documentation (Session 2)
ð¯ Phase 3: Implementation & Testing (Session 3-4)
ð¯ Phase 4: Integration & Validation (Session 5)
ðŸ Session persistence: Resume context automatically
â Quality gates: Validation before each phase transition"
æé©ãªçµã¿åãã:
- ãã¬ã€ã³ã¹ããŒãã³ã°âïŒèŠä»¶çºèŠãšäœç³»çãªå®è£
- + ãªãŒã±ã¹ãã¬ãŒã·ã§ã³: æé©ãªããŒã«éžæã«ããã¿ã¹ã¯èª¿æŽ
- + ã€ã³ããã¹ãã¯ã·ã§ã³ïŒè€éãªãã§ãŒãºã®æ±ºå®ã®ããã®ééçãªæšè«
ð¯ ãªãŒã±ã¹ãã¬ãŒã·ã§ã³ã¢ãŒã - ã€ã³ããªãžã§ã³ããªããŒã«éžæ
ç®ç: ã€ã³ããªãžã§ã³ããªããŒã«ã«ãŒãã£ã³ã°ãšäžŠå調æŽãéããŠã¿ã¹ã¯ã®å®è¡ãæé©åããŸãã
èªåã¢ã¯ãã£ããŒã·ã§ã³ããªã¬ãŒ:
- é«åºŠãªèª¿æŽãå¿ èŠãšãããã«ãããŒã«æäœ
- ããã©ãŒãã³ã¹å¶çŽïŒãªãœãŒã¹äœ¿çšéãå€ãïŒ
- 䞊åå®è¡ã®æ©äŒïŒ3ã€ä»¥äžã®ç¬ç«ãããã¡ã€ã«/æäœïŒ
- è€æ°ã®æå¹ãªããŒã«ã¢ãããŒãã«ããè€éãªã«ãŒãã£ã³ã°æ±ºå®
è¡åã®å€å:
- ã€ã³ããªãžã§ã³ãããŒã«ã«ãŒãã£ã³ã°:åã¿ã¹ã¯ã¿ã€ãã«æé©ãªMCPãµãŒããŒãšãã€ãã£ãããŒã«ãéžæããŸãã
- ãªãœãŒã¹èªè: ã·ã¹ãã ã®å¶çŽãšå¯çšæ§ã«åºã¥ããŠã¢ãããŒããé©å¿ãããŸã
- 䞊åæé©å: åæå®è¡ã®ããã®ç¬ç«ããæäœãèå¥ããŸã
- 調æŽã®çŠç¹ïŒèª¿æŽãããå®è¡ãéããŠããŒã«ã®éžæãšäœ¿çšãæé©åããŸã
- ã¢ãããã£ããã©ãŒã«ããã¯: åªå ãªãã·ã§ã³ãå©çšã§ããªãå Žåã«ããŒã«ãé©åã«åãæ¿ããŸã
çµéšäŸ:
Standard Approach: Sequential file-by-file analysis and editing
Orchestration Approach:
"ð¯ Multi-Tool Coordination Strategy:
ð Phase 1: Serena (semantic analysis) + Sequential (architecture review)
â¡ Phase 2: Morphllm (pattern edits) + Magic (UI components)
𧪠Phase 3: Playwright (testing) + Context7 (documentation patterns)
ð Parallel execution: 3 tools working simultaneously
\"
æé©ãªçµã¿åãã:
- ã¿ã¹ã¯ç®¡ç â : è€éãªå€æ®µéèšç»ã®ããã®ããŒã«èª¿æŽãæäŸããŸã
- + ããŒã¯ã³å¹ç: å§çž®éä¿¡ã«ããæé©ãªããŒã«éžæ
- è€éãªã¿ã¹ã¯: ã€ã³ããªãžã§ã³ããªããŒã«ã«ãŒãã£ã³ã°ã远å ããŠå®è¡ã匷å
â¡ ããŒã¯ã³å¹çã¢ãŒã - å§çž®éä¿¡
ç®ç: æ å ±ã®å質ãç¶æããªãããã·ã³ãã« ã·ã¹ãã ãéããŠæšå® 30 ïœ 50% ã®ããŒã¯ã³åæžãå®çŸããŸãã
èªåã¢ã¯ãã£ããŒã·ã§ã³ããªã¬ãŒ:
- é«ãã³ã³ããã¹ãã®äœ¿çšãéçã«è¿ã¥ããŠããŸã
- è³æºå¹çãæ±ããããå€§èŠæš¡éçš
- ãŠãŒã¶ãŒæç€ºãã©ã°:Â
--ucã--ultracompressed - è€æ°ã®åºåãæã€è€éãªåæã¯ãŒã¯ãããŒ
è¡åã®å€å:
- ã·ã³ãã«ã³ãã¥ãã±ãŒã·ã§ã³: ããžãã¯ãããŒãã¹ããŒã¿ã¹ãæè¡ãã¡ã€ã³ã«èŠèŠçãªã·ã³ãã«ã䜿çšããŸã
- æè¡ç¥èªïŒç¹°ãè¿ãããæè¡çšèªã®ã³ã³ããã¹ãèªèå§çž®
- æ§é åãããå¯åºŠ: åé·ãªæ®µèœãããç®æ¡æžãã衚ãç°¡æœãªæžåŒ
- æ å ±ä¿å: å§çž®ããŠã95%以äžã®æ å ±å質ãç¶æ
- æ§é åããããã©ãŒããã: æç¢ºããšã¿ã¹ã¯ã®å®äºã®ããã«æŽçãããŠããŸã
çµéšäŸ:
Standard Approach: "The authentication system implementation shows a security vulnerability in the user validation function that needs immediate attention..."
Token Efficient Approach:
"ð¡ïž Security Alert:
auth.js:45 â user val() â critical vuln
ð Impact: â token bypass possible
â¡ Action: fix validation + audit âµ high sev
ð§ Est: 2h impl + 1h test"
æé©ãªçµã¿åãã:
- ä»»æã®ã¢ãŒã: ã¢ãŒãåºæã®åäœãç¶æããªããå§çž®ã¬ã€ã€ãŒã远å ããŸã
- ãªãŒã±ã¹ãã¬ãŒã·ã§ã³ â : å§çž®ãããããŒã«èª¿æŽãšã¹ããŒã¿ã¹æŽæ°
- æåãªãŒããŒã©ã€ã:
--ucã³ã³ããã¹ãã®ãã¬ãã·ã£ãŒãå¹çãåªå ãããå Žåã«äœ¿çšããŸã
ðš æšæºã¢ãŒã - ãã©ã³ã¹ã®ãšããããã©ã«ã
ç®ç: ç°¡åãªéçºã¿ã¹ã¯ã«å¯ŸããŠæç¢ºã§ãããã§ãã·ã§ãã«ãªã³ãã¥ãã±ãŒã·ã§ã³ãæäŸããŸãã
èªåã¢ã¯ãã£ããŒã·ã§ã³ããªã¬ãŒ:
- è€éãã®ææšã®ãªããã·ã³ãã«ã§æç¢ºã«å®çŸ©ãããã¿ã¹ã¯
- æç¢ºãªèŠä»¶ãåããåäžãã¡ã€ã«æäœ
- åºæ¬çãªèª¬æãšæšæºçãªéçºã¯ãŒã¯ãããŒ
- ä»ã®ã¢ãŒãããªã¬ãŒã¯æ€åºãããŸããïŒããã©ã«ãã®ãã©ãŒã«ããã¯ïŒ
è¡åã®å€å:
- ãããã§ãã·ã§ãã«ãªã³ãã¥ãã±ãŒã·ã§ã³ïŒæç¢ºã§ç°¡æœãªæè¡çšèª
- äžçšåºŠã®è©³çް: ã»ãšãã©ã®éçºã¿ã¹ã¯ã«é©ãããã©ã³ã¹ã®åããæ å ±ã®æ·±ã
- æšæºããŒã«éžæ: ãã€ãã£ãã®Claudeæ©èœãšåºæ¬ããŒã«ã䜿çš
- å質éèŠ: è€éãªãªãŒã±ã¹ãã¬ãŒã·ã§ã³ã®ãªãŒããŒããããªãã§ã³ãŒãã®å質ãç¶æ
- å¿ççãªé©å¿ïŒè€éããå¢ããšãç¹åããã¢ãŒãã«åãæ¿ããæºåãã§ããŠããŸã
çµéšäŸ:
Standard Approach: Consistent, professional baseline for all tasks
"I'll implement the login function with proper error handling:
1. Validate user input (email format, password requirements)
2. Authenticate against database with secure hashing
3. Generate JWT token with appropriate expiration
4. Return success response with user data
The implementation will follow security best practices and include comprehensive error handling."
æé©ãªçµã¿åãã:
- â ä»»æã®ã¢ãŒã: ä»ã®ã¢ãŒãã匷åããåºæºãšããŠæ©èœããŸã
- ã¢ãŒãåãæ¿ã: å¿ èŠã«å¿ããŠèªåçã«ç¹æ®ã¢ãŒãã«åãæ¿ããŸã
- æç¢ºãã®åªå : æé©åãããåãããããã³ãã¥ãã±ãŒã·ã§ã³ãéèŠãªå Žå
é«åºŠãªäœ¿çšæ³
ã¢ãŒãã®çµã¿åãã
ãã«ãã¢ãŒãã¯ãŒã¯ãããŒ:
# Discovery â Planning â Implementation
/sc:brainstorm "microservices architecture" --task-manage
# â Brainstorming: requirement discovery
# â Task Management: multi-phase coordination
# Analysis with transparency and efficiency
/sc:analyze legacy-system/ --introspect --uc
# â Introspection: transparent reasoning
# â Token Efficiency: compressed output
æåã¢ãŒãå¶åŸ¡
ç¹å®ã®åäœã匷å¶ãã:
--brainstorm: ããããã¿ã¹ã¯ã§å ±åçºèŠã匷å¶--introspect: ããããã¢ãŒãã«æšè«ã®éææ§ã远å--task-manage: éå±€çãªèª¿æŽãå¯èœã«ãã--orchestrate: ããŒã«éžæãšäžŠåå®è¡ãæé©å--uc: å¹çåã®ããã«éä¿¡ãå§çž®ãã
ãªãŒããŒã©ã€ãã®äŸ:
# Force brainstorming on "clear" requirements
/sc:implement "user login" --brainstorm
# Add reasoning transparency to debugging
# èªèšŒåé¡ãéæãªæšçã§ãããã°
# Enable task management for simple operations
# ã·ã¹ããããã¯ãªã¿ã¹ã¯ç®¡çã§ã¹ã¿ã€ã«ãã¡ã€ã«ãæŽæ°
ã¢ãŒãã®å¢çãšåªå é äœ
ã¢ãŒããã¢ã¯ãã£ãã«ãªããš:
- è€éãã®éŸå€: >3ãã¡ã€ã« â ã¿ã¹ã¯ç®¡ç
- ãªãœãŒã¹ã®å§åïŒã³ã³ããã¹ã䜿çšçãé«ã â ããŒã¯ã³å¹ç
- è€æ°ã®ããŒã«ãå¿ èŠ: è€éãªåæ â ãªãŒã±ã¹ãã¬ãŒã·ã§ã³
- äžç¢ºå®æ§ïŒæŒ ç¶ãšããèŠä»¶ â ãã¬ã€ã³ã¹ããŒãã³ã°
- ãšã©ãŒå埩ïŒåé¡ â ã€ã³ããã¹ãã¯ã·ã§ã³
åªå ã«ãŒã«:
- å®å šç¬¬äžïŒåè³ªãšæ€èšŒã¯åžžã«å¹çãããåªå ãããŸã
- ãŠãŒã¶ãŒã®æå³: æåãã©ã°ã¯èªåæ€åºãäžæžãããŸã
- ã³ã³ããã¹ãé©å¿: è€éãã«åºã¥ããŠã¢ãŒããã¹ã¿ãã¯
- ãªãœãŒã¹ç®¡çïŒãã¬ãã·ã£ãŒäžã§ã¯å¹çã¢ãŒããæŽ»æ§åãã
å®äžçã®äŸ
å®å šãªã¯ãŒã¯ãããŒã®äŸ
æ°èŠãããžã§ã¯ãéçº:
# Phase 1: Discovery (Brainstorming Mode auto-activates)
"I want to build a productivity app"
â ð€ Socratic questions about users, features, platform choice
â ð Structured requirements brief
# Phase 2: Planning (Task Management Mode auto-activates)
/sc:implement "core productivity features"
â ð Multi-phase breakdown with dependencies
â ð¯ Phase coordination with quality gates
# Phase 3: Implementation (Orchestration Mode coordinates tools)
/sc:implement "frontend and backend systems"
â ð¯ Magic (UI) + Context7 (patterns) + Sequential (architecture)
â â¡ Parallel execution optimization
è€éãªåé¡ã®ãããã°:
# Problem analysis (Introspection Mode auto-activates)
"Users getting intermittent auth failures"
â ð€ Transparent reasoning about potential causes
â ð¯ Hypothesis formation and evidence gathering
â ð¡ Pattern recognition across similar issues
# Systematic resolution (Task Management coordinates)
# èªèšŒã·ã¹ãã ãå
æ¬çã«ä¿®æ£
â ð Phase 1: Root cause analysis
â ð Phase 2: Solution implementation
â ð Phase 3: Testing and validation
ã¢ãŒãã®çµã¿åãããã¿ãŒã³
éåžžã«è€éãªã·ããªãª:
# Large refactoring with multiple constraints
/sc:improve legacy-system/ --introspect --uc --orchestrate
â ð Transparent reasoning (Introspection)
â â¡ Compressed communication (Token Efficiency)
â ð¯ Optimal tool coordination (Orchestration)
â ð Systematic phases (Task Management auto-activates)
ã¯ã€ãã¯ãªãã¡ã¬ã³ã¹
ã¢ãŒãèµ·åãã¿ãŒã³
| ããªã¬ãŒã¿ã€ã | å ¥åäŸ | ã¢ãŒããæå¹ | äž»èŠãªåäœ |
|---|---|---|---|
| æŒ ç¶ãšããèŠæ± | ãã¢ããªãäœãããã | ð§ ãã¬ã€ã³ã¹ããŒãã³ã° | ãœã¯ã©ãã¹åŒã®çºèŠç質å |
| è€éãªã¹ã³ãŒã | >3 ã€ã®ãã¡ã€ã«ãŸã㯠>2 ã€ã®ãã£ã¬ã¯ã㪠| ð ã¿ã¹ã¯ç®¡ç | äœçžèª¿æŽ |
| ãã«ãããŒã«ã®å¿ èŠæ§ | åæ + å®è£ | ð¯ ãªãŒã±ã¹ãã¬ãŒã·ã§ã³ | ããŒã«ã®æé©å |
| ãšã©ãŒå埩 | ãæåŸ éãã«åäœããŠããŸããã | ð å ç | éæãªæšè« |
| ãªãœãŒã¹ã®å§å | é«ã³ã³ããã¹ãäœ¿çš | â¡ ããŒã¯ã³å¹ç | ã·ã³ãã«å§çž® |
| ç°¡åãªã¿ã¹ã¯ | ããã®æ©èœãä¿®æ£ããã | ðš æšæº | æç¢ºã§çŽæ¥çãªã¢ãããŒã |
æåãªãŒããŒã©ã€ãã³ãã³ã
# Force specific mode behaviors
/sc:command --brainstorm # Collaborative discovery
/sc:command --introspect # Reasoning transparency
/sc:command --task-manage # Hierarchical coordination
/sc:command --orchestrate # Tool optimization
/sc:command --uc # Token compression
# Combine multiple modes
/sc:command --introspect --uc # Transparent + efficient
/sc:command --task-manage --orchestrate # Coordinated + optimized
ãã©ãã«ã·ã¥ãŒãã£ã³ã°
ãã©ãã«ã·ã¥ãŒãã£ã³ã°ã®ãã«ãã«ã€ããŠã¯ã以äžãåç §ããŠãã ããã
- ããããåé¡- ããããåé¡ã«å¯Ÿããã¯ã€ãã¯ä¿®æ£
- ãã©ãã«ã·ã¥ãŒãã£ã³ã°ã¬ã€ã- å æ¬çãªåé¡è§£æ±º
ããããåé¡
- ã¢ãŒããã¢ã¯ãã£ãåãããŠããŸãã: æåãã©ã°ã䜿çšããŠãã ãã:Â
--brainstormãã--introspect``--uc - ééã£ãã¢ãŒããã¢ã¯ãã£ãã§ã: ãªã¯ãšã¹ãå ã®è€éãªããªã¬ãŒãšããŒã¯ãŒãã確èªããŠãã ãã
- äºæããªãã¢ãŒãåãæ¿ãïŒã¿ã¹ã¯ã®é²è¡ã«åºã¥ãéåžžã®åäœ
- å®è¡ãžã®åœ±é¿: ã¢ãŒãã¯ããŒã«ã®äœ¿çšãæé©åãããã®ã§ãããå®è¡ã«ã¯åœ±é¿ããªãã¯ãã§ãã
- ã¢ãŒãã®ç«¶å:ãã©ã°ã¬ã€ãã§ãã©ã°ã®åªå é äœã«ãŒã«ã確èªããŠãã ãã
å³æä¿®æ£
- ç¹å®ã®ã¢ãŒãã匷å¶:
--brainstormãŸãã¯ã®ãããªæç€ºçãªãã©ã°ã䜿çšãã--task-manage - ãªã»ããã¢ãŒãã®åäœ: ã¢ãŒãç¶æ ããªã»ããããã«ã¯ãClaude Code ã»ãã·ã§ã³ãåèµ·åããŸãã
- ã¢ãŒãã€ã³ãžã±ãŒã¿ãŒã確èªãã: å¿çã«ð€ãð¯ãðã®èšå·ããããã©ããã確èªããŸã
- è€éããæ€èšŒ: åçŽãªã¿ã¹ã¯ã¯æšæºã¢ãŒãã䜿çšããè€éãªã¿ã¹ã¯ã¯èªåçã«åãæ¿ãããŸã
ã¢ãŒãåºæã®ãã©ãã«ã·ã¥ãŒãã£ã³ã°
ãã¬ã€ã³ã¹ããŒãã³ã°ã¢ãŒãã®åé¡:
# Problem: Mode gives solutions instead of asking questions
# Quick Fix: Check request clarity and use explicit flag
/sc:brainstorm "web app" --brainstorm # Force discovery mode
"I have a vague idea about..." # Use uncertainty language
"Maybe we could build..." # Trigger exploration
ã¿ã¹ã¯ç®¡çã¢ãŒãã®åé¡:
# Problem: Simple tasks getting complex coordination
# Quick Fix: Reduce scope or use simpler commands
/sc:implement "function" --no-task-manage # Disable coordination
/sc:troubleshoot bug.js # Use basic commands
# Check if task really is complex (>3 files, >2 directories)
ããŒã¯ã³å¹çã¢ãŒãã®åé¡:
# Problem: Output too compressed or unclear
# Quick Fix: Disable compression for clarity
/sc:command --no-uc # Disable compression
/sc:command --verbose # Force detailed output
# Use when clarity is more important than efficiency
ã€ã³ããã¹ãã¯ã·ã§ã³ã¢ãŒãã®åé¡:
# Problem: Too much meta-commentary, not enough action
# Quick Fix: Disable introspection for direct work
/sc:command --no-introspect # Direct execution
# Use introspection only for learning and debugging
ãªãŒã±ã¹ãã¬ãŒã·ã§ã³ ã¢ãŒãã®åé¡:
# Problem: Tool coordination causing confusion
# Quick Fix: Simplify tool usage
/sc:command --no-mcp # Native tools only
/sc:command --simple # Basic execution
# Check if task complexity justifies orchestration
ãšã©ãŒã³ãŒããªãã¡ã¬ã³ã¹
| ã¢ãŒããšã©ãŒ | æå³ | ã¯ã€ãã¯ãã£ãã¯ã¹ |
|---|---|---|
| B001 | ãã¬ã€ã³ã¹ããŒãã³ã°ãèµ·åã§ããŸããã§ãã | --brainstormæç€ºçãªãã©ã°ã䜿çšãã |
| T001 | ã¿ã¹ã¯ç®¡çã®ãªãŒããŒããã | --no-task-manageç°¡åãªã¿ã¹ã¯ã«äœ¿çšãã |
| U001 | ããŒã¯ã³å¹çã匷ããã | 䜿çš--verboseãŸãã¯--no-uc |
| I001 | ã€ã³ããã¹ãã¯ã·ã§ã³ã¢ãŒãã忢ããŸãã | --no-introspectçŽæ¥è¡åã«äœ¿ã |
| O001 | ãªãŒã±ã¹ãã¬ãŒã·ã§ã³èª¿æŽã«å€±æ | 䜿çš--no-mcpãŸãã¯--simple |
| M001 | ã¢ãŒãã®ç«¶åãæ€åºãããŸãã | ãã©ã°ã®åªå é äœã®ã«ãŒã«ã確èªãã |
| M002 | ã¢ãŒãåãæ¿ãã«ãŒã | ç¶æ ããªã»ããããã«ã¯ã»ãã·ã§ã³ãåèµ·åããŠãã ãã |
| M003 | ã¢ãŒããèªèãããŸãã | SuperClaudeãæŽæ°ãããã¹ãã«ããã§ãã¯ãã |
ããã°ã¬ãã·ããµããŒãã¬ãã«
ã¬ãã« 1: ã¯ã€ãã¯ãã£ãã¯ã¹ (< 2 å)
- èªåã¢ãŒãéžæãç¡å¹ã«ããã«ã¯æåãã©ã°ã䜿çšããŸã
- ã¿ã¹ã¯ã®è€éããæåŸ ãããã¢ãŒãã®åäœãšäžèŽããŠãããã©ããã確èªãã
- Claude Codeã»ãã·ã§ã³ãåèµ·åããŠã¿ãŠãã ãã
ã¬ãã«2: 詳现ãªãã«ãïŒ5ïœ15åïŒ
# Mode-specific diagnostics
/sc:help modes # List all available modes
/sc:reflect --type mode-status # Check current mode state
# Review request complexity and triggers
- ã¢ãŒãã®ã€ã³ã¹ããŒã«ã«é¢ããåé¡ã«ã€ããŠã¯ãäžè¬çãªåé¡ã¬ã€ããåç §ããŠãã ããã
ã¬ãã«3: å°éå®¶ã«ãããµããŒãïŒ30å以äžïŒ
# Deep mode analysis
SuperClaude install --diagnose
# Check mode activation patterns
# Review behavioral triggers and thresholds
- è¡åã¢ãŒãåæã«ã€ããŠã¯èšºæãªãã¡ã¬ã³ã¹ã¬ã€ããåç §ããŠãã ãã
ã¬ãã«4: ã³ãã¥ããã£ãµããŒã
- GitHub Issuesã§ã®ã¢ãŒãã®åé¡ã®å ±å
- äºæããªãã¢ãŒãåäœã®äŸãå«ãã
- æãŸããã¢ãŒããšå®éã®ã¢ãŒãã®ã¢ã¯ãã£ããŒã·ã§ã³ã説æãã
æåã®æ€èšŒ
ã¢ãŒãä¿®æ£ãé©çšããåŸã次ã®ããã«ãã¹ãããŸãã
- ã·ã³ãã«ãªãªã¯ãšã¹ãã«ã¯æšæºã¢ãŒãïŒæç¢ºã§çŽæ¥çãªå¿çïŒã䜿çšããŸã
- è€éãªèŠæ±ã¯é©åãªã¢ãŒãïŒèª¿æŽãæšè«ïŒãèªåçã«ã¢ã¯ãã£ãåããŸã
- æåãã©ã°ã¯èªåæ€åºãæ£ããäžæžãããŸã
- ã¢ãŒãã€ã³ãžã±ãŒã¿ãŒïŒð€ãð¯ãðïŒã¯äºæ³éãã«è¡šç€ºãããŸã
- ããŸããŸãªã¢ãŒãã§ããã©ãŒãã³ã¹ã¯è¯å¥œã§ã
ã¯ã€ãã¯ãã©ãã«ã·ã¥ãŒãã£ã³ã°ïŒã¬ã¬ã·ãŒïŒ
- ã¢ãŒããã¢ã¯ãã£ãåãããªãâæåãã©ã°ã䜿çš:Â
--brainstormãã--introspect``--uc - ééã£ãã¢ãŒããã¢ã¯ãã£ãã§ãâ ãªã¯ãšã¹ãå ã®è€éãªããªã¬ãŒãšããŒã¯ãŒãã確èªããŠãã ãã
- äºæãã¬ã¢ãŒãåãæ¿ãâ ã¿ã¹ã¯ã®é²è¡ã«åºã¥ãéåžžã®åäœ
- å®è¡ãžã®åœ±é¿â ã¢ãŒãã¯ããŒã«ã®äœ¿çšãæé©åãããã®ã§ãããå®è¡ã«ã¯åœ±é¿ããªãã¯ãã§ã
- ã¢ãŒãã®ç«¶åâãã©ã°ã¬ã€ãã§ãã©ã°ã®åªå é äœã«ãŒã«ã確èªããŠãã ãã
ãããã質å
Q: ã©ã®ã¢ãŒããã¢ã¯ãã£ãã«ãªã£ãŠãããã¯ã©ãããã°ããããŸãã? A: éä¿¡ãã¿ãŒã³ã§æ¬¡ã®ã€ã³ãžã±ãŒã¿ãŒã確èªããŠãã ããã
- ð€çºèŠã®è³ªå â ãã¬ã€ã³ã¹ããŒãã³ã°
- ð¯ æšè«ã®éææ§ â å ç
- ãã§ãŒãºã®å èš³ â ã¿ã¹ã¯ç®¡ç
- ããŒã«èª¿æŽ â ãªãŒã±ã¹ãã¬ãŒã·ã§ã³
- ã·ã³ãã«å§çž® â ããŒã¯ã³å¹ç
Q: ç¹å®ã®ã¢ãŒãã匷å¶ã§ããŸãã? A: ã¯ããæåãã©ã°ã䜿çšããŠèªåæ€åºããªãŒããŒã©ã€ãããŸãã
/sc:command --brainstorm # Force discovery
/sc:command --introspect # Add transparency
/sc:command --task-manage # Enable coordination
/sc:command --uc # Compress output
Q: ã¢ãŒãã¯å®è¡ã«åœ±é¿ããŸãã? A: ã¢ãŒãã¯èª¿æŽãéããŠããŒã«ã®äœ¿çšãæé©åããŸãã
- ããŒã¯ã³å¹ç: 30ïœ50%ã®ã³ã³ããã¹ãåæž
- ãªãŒã±ã¹ãã¬ãŒã·ã§ã³ïŒäžŠååŠç
- ã¿ã¹ã¯ç®¡çïŒäœç³»çãªèšç»ãéããŠææ»ãã鲿¢
Q: ã¢ãŒãã¯é£æºããŠåäœããŸãã? A: ã¯ããã¢ãŒãã¯äºãã«è£å®ãåãããã«èšèšãããŠããŸãã
- ã¿ã¹ã¯ç®¡çã¯ä»ã®ã¢ãŒãã調æŽããŸã
- ããŒã¯ã³å¹çã¯ããããã¢ãŒãã®åºåãå§çž®ãã
- ã€ã³ããã¹ãã¯ã·ã§ã³ã¯ããããã¯ãŒã¯ãããŒã«éææ§ããããããŸã
ãŸãšã
SuperClaude ã® 5 ã€ã®è¡åã¢ãŒãã¯ããŠãŒã¶ãŒã®ããŒãºã«èªåçã«é©åããã€ã³ããªãžã§ã³ããªé©å¿ã·ã¹ãã ãäœæããŸãã
- ð§ ãã¬ã€ã³ã¹ããŒãã³ã°ïŒæŒ ç¶ãšããã¢ã€ãã¢ãæç¢ºãªèŠä»¶ã«å€æãã
- ð ã€ã³ããã¹ãã¯ã·ã§ã³ïŒåŠç¿ãšãããã°ã®ããã®ééçãªæšè«ãæäŸããŸã
- ð ã¿ã¹ã¯ç®¡çïŒè€éãªè€æ°ã¹ãããã®æäœã調æŽããŸã
- ð¯ ãªãŒã±ã¹ãã¬ãŒã·ã§ã³: ããŒã«ã®éžæãšäžŠåå®è¡ãæé©åããŸã
- â¡ ããŒã¯ã³å¹ç: æçããä¿ã¡ãªããã³ãã¥ãã±ãŒã·ã§ã³ãå§çž®ãã
- ðš æšæº: åçŽãªã¿ã¹ã¯ã«å¯ŸããŠãããã§ãã·ã§ãã«ãªåºæºãç¶æããŸã
éèŠãªæŽå¯ïŒã¢ãŒãã«ã€ããŠèããå¿ èŠã¯ãããŸãããã¢ãŒãã¯ééçã«åäœããéçºãšã¯ã¹ããªãšã³ã¹ãåäžãããŸããéæãããããšã説æããã ãã§ãSuperClaudeã¯ããŒãºã«åãããŠã¢ãããŒããèªåçã«èª¿æŽããŸãã
é¢é£ã¬ã€ã
åŠç¿ã®é²æ:
ð± ãšãã»ã³ã·ã£ã«ïŒç¬¬1é±ïŒ
- ã¯ã€ãã¯ã¹ã¿ãŒãã¬ã€ã- ã¢ãŒãã®æå¹åäŸ
- ã³ãã³ããªãã¡ã¬ã³ã¹- ã³ãã³ãã¯èªåçã«ã¢ãŒããã¢ã¯ãã£ãåããŸã
- ã€ã³ã¹ããŒã«ã¬ã€ã- åäœã¢ãŒãã®èšå®
ð¿äžçŽïŒç¬¬2ïœ3é±ïŒ
- ãšãŒãžã§ã³ãã¬ã€ã- ã¢ãŒããšã¹ãã·ã£ãªã¹ãã®é£æºæ¹æ³
- ãã©ã°ã¬ã€ã- æåã¢ãŒãã®å¶åŸ¡ãšæé©å
- äŸæé- ã¢ãŒããã¿ãŒã³ã®å®è·µ
ð² äžçŽïŒ2ã¶æç®ä»¥éïŒ
- MCP ãµãŒããŒ- æ¡åŒµæ©èœãåããã¢ãŒãçµ±å
- ã»ãã·ã§ã³ç®¡ç- ã¿ã¹ã¯ç®¡çã¢ãŒãã®ã¯ãŒã¯ãããŒ
- ã¯ããã«- ã¢ãŒãã®äœ¿çšãã¿ãŒã³
ð§ ãšãã¹ããŒã
- æè¡ã¢ãŒããã¯ãã£- ã¢ãŒãå®è£ ã®è©³çް
- ã³ãŒãã®è²¢ç®- ã¢ãŒãã®æ©èœãæ¡åŒµãã
ã¢ãŒãåºæã®ã¬ã€ã:
- ãã¬ã€ã³ã¹ããŒãã³ã°ïŒèŠä»¶çºèŠãã¿ãŒã³
- ã¿ã¹ã¯ç®¡çïŒã»ãã·ã§ã³ç®¡çã¬ã€ã
- ãªãŒã±ã¹ãã¬ãŒã·ã§ã³: MCP ãµãŒã㌠ã¬ã€ã
- ããŒã¯ã³å¹çïŒã³ãã³ãã®åºç€