A configuration framework that enhances Claude Code with specialized commands, cognitive personas, and development methodologies.
253 matches across 12 categories. Click a row to expand file-level details.
| Severity | File | Line | Snippet |
|---|---|---|---|
| LOW | KNOWLEDGE.md | 214 | def test_component_interaction(): |
| LOW | KNOWLEDGE.md | 239 | def test_feature_with_empty_input(): |
| LOW | KNOWLEDGE.md | 242 | def test_feature_with_invalid_data(): |
| LOW | KNOWLEDGE.md | 478 | def pytest_runtest_makereport(item, call): |
| LOW | plugins/superclaude/scripts/clean_command_names.py | 75 | def process_commands_directory(commands_dir: Path) -> int: |
| LOW | plugins/superclaude/commands/recommend.md | 47 | def detect_language_and_translate(input_text): |
| LOW | tests/unit/test_cli_install.py | 17 | def test_list_available_commands(self): |
| LOW | tests/unit/test_cli_install.py | 26 | def test_install_commands_to_temp_dir(self, tmp_path): |
| LOW | tests/unit/test_cli_install.py | 44 | def test_install_commands_skip_existing(self, tmp_path): |
| LOW | tests/unit/test_cli_install.py | 57 | def test_install_commands_force_reinstall(self, tmp_path): |
| LOW | tests/unit/test_cli_install.py | 80 | def test_list_installed_commands(self, tmp_path): |
| LOW | tests/unit/test_cli_install.py | 97 | def test_install_commands_creates_target_directory(self, tmp_path): |
| LOW | tests/unit/test_cli_install.py | 108 | def test_available_commands_format(self): |
| LOW | tests/unit/test_cli_install.py | 121 | def test_research_command_exists(self, tmp_path): |
| LOW | tests/unit/test_cli_install.py | 134 | def test_all_expected_commands_available(self): |
| LOW | tests/unit/test_cli_install.py | 149 | def test_install_to_nonexistent_parent(self, tmp_path): |
| LOW | tests/unit/test_cli_install.py | 158 | def test_empty_target_directory_ok(self, tmp_path): |
| LOW | tests/unit/test_reflexion.py | 37 | def test_record_error_with_solution(self): |
| LOW | tests/unit/test_reflexion.py | 50 | def test_get_solution_for_known_error(self): |
| LOW | tests/unit/test_reflexion.py | 71 | def test_error_pattern_matching(self): |
| LOW | tests/unit/test_reflexion.py | 98 | def test_reflexion_memory_persistence(self, temp_memory_dir): |
| LOW | tests/unit/test_reflexion.py | 111 | def test_error_learning_across_sessions(self): |
| LOW | tests/unit/test_reflexion.py | 139 | def test_reflexion_marker_integration(reflexion_pattern): |
| LOW | tests/unit/test_reflexion.py | 159 | def test_reflexion_with_real_exception(): |
| LOW | tests/unit/test_reflection.py | 80 | def test_reflect_specific_task(self, reflection_engine): |
| LOW | tests/unit/test_reflection.py | 113 | def test_reflect_full_context(self, reflection_engine): |
| LOW | tests/unit/test_reflection.py | 129 | def test_reflect_no_past_mistakes(self, reflection_engine): |
| LOW | tests/unit/test_reflection.py | 136 | def test_reflect_with_similar_mistakes(self, engine_with_mistakes): |
| LOW | tests/unit/test_reflection.py | 145 | def test_confidence_threshold(self, reflection_engine): |
| LOW | tests/unit/test_reflection.py | 152 | def test_confidence_above_threshold(self, reflection_engine): |
| LOW | tests/unit/test_reflection.py | 195 | def test_clarity_specific_verbs_boost(self, reflection_engine): |
| LOW | tests/unit/test_parallel.py | 39 | def test_task_can_execute_no_deps(self): |
| LOW | tests/unit/test_parallel.py | 45 | def test_task_can_execute_with_deps_met(self): |
| LOW | tests/unit/test_parallel.py | 53 | def test_task_cannot_execute_deps_unmet(self): |
| LOW | tests/unit/test_parallel.py | 64 | def test_task_can_execute_all_deps_met(self): |
| LOW | tests/unit/test_parallel.py | 78 | def test_plan_independent_tasks(self): |
| LOW | tests/unit/test_parallel.py | 92 | def test_plan_sequential_tasks(self): |
| LOW | tests/unit/test_parallel.py | 106 | def test_plan_mixed_dependencies(self): |
| LOW | tests/unit/test_parallel.py | 137 | def test_plan_speedup_calculation(self): |
| LOW | tests/unit/test_parallel.py | 150 | def test_plan_circular_dependency_detection(self): |
| LOW | tests/unit/test_parallel.py | 161 | def test_execute_returns_results(self): |
| LOW | tests/unit/test_parallel.py | 177 | def test_execute_handles_failures(self): |
| LOW | tests/unit/test_parallel.py | 200 | def test_execute_respects_dependency_order(self): |
| LOW | tests/unit/test_parallel.py | 227 | def test_execute_parallel_speedup(self): |
| LOW | tests/unit/test_parallel.py | 262 | def test_should_parallelize_above_threshold(self): |
| LOW | tests/unit/test_parallel.py | 267 | def test_should_parallelize_below_threshold(self): |
| LOW | tests/unit/test_parallel.py | 272 | def test_should_parallelize_custom_threshold(self): |
| LOW | tests/unit/test_parallel.py | 277 | def test_parallel_file_operations(self): |
| LOW | tests/unit/test_self_check.py | 15 | def test_validate_passing_implementation(self, sample_implementation): |
| LOW | tests/unit/test_self_check.py | 31 | def test_validate_failing_implementation(self, failing_implementation): |
| LOW | tests/unit/test_self_check.py | 47 | def test_check_tests_passing_with_output(self): |
| LOW | tests/unit/test_self_check.py | 65 | def test_check_requirements_met(self): |
| LOW | tests/unit/test_self_check.py | 86 | def test_check_assumptions_verified(self): |
| LOW | tests/unit/test_self_check.py | 107 | def test_check_evidence_exists(self): |
| LOW | tests/unit/test_self_check.py | 130 | def test_detect_hallucinations_tests_without_output(self): |
| LOW | tests/unit/test_self_check.py | 144 | def test_detect_hallucinations_complete_without_evidence(self): |
| LOW | tests/unit/test_self_check.py | 158 | def test_detect_hallucinations_complete_with_failing_tests(self): |
| LOW | tests/unit/test_self_check.py | 172 | def test_detect_hallucinations_ignored_errors(self): |
| LOW | tests/unit/test_self_check.py | 187 | def test_detect_hallucinations_uncertainty_language(self): |
| LOW | tests/unit/test_self_check.py | 200 | def test_format_report_passing(self): |
| 82 more matches not shown… | |||
| Severity | File | Line | Snippet |
|---|---|---|---|
| LOW | install.sh | 182 | # Check if pyproject.toml exists |
| LOW | install.sh | 203 | # Check if superclaude command is available |
| LOW | plugins/superclaude/scripts/clean_command_names.py | 59 | # Check if modification is needed |
| LOW | plugins/superclaude/scripts/clean_command_names.py | 101 | # Read file content |
| LOW | tests/unit/test_token_budget.py | 54 | # Check if usage tracking is available |
| LOW | tests/integration/test_pytest_plugin.py | 115 | # Check if integration marker was auto-applied |
| LOW | scripts/sync_from_framework.py | 230 | # Check if file exists with different name (needs git mv) |
| LOW | scripts/sync_from_framework.py | 431 | # Check if configurations differ |
| LOW | scripts/publish.sh | 40 | # Check if Python script exists |
| LOW | scripts/uninstall_legacy.sh | 16 | # Check if .claude directory exists |
| LOW | src/superclaude/pm_agent/confidence.py | 205 | # Check if context contains reference URLs or documentation links |
| LOW | src/superclaude/pm_agent/confidence.py | 210 | # Check if docs/research directory has relevant analysis |
| LOW | src/superclaude/cli/install_skill.py | 39 | # Check if skill already installed |
| LOW | src/superclaude/cli/install_commands.py | 50 | # Check if already exists |
| LOW | src/superclaude/cli/main.py | 243 | # Display results |
| LOW | src/superclaude/cli/doctor.py | 56 | # Check if superclaude plugin is loaded |
| LOW | src/superclaude/cli/doctor.py | 131 | # Check if package is importable |
| LOW | src/superclaude/cli/install_mcp.py | 510 | # Check if already set in environment |
| LOW | src/superclaude/cli/install_mcp.py | 546 | # Check if already installed |
| LOW | src/superclaude/cli/install_mcp.py | 637 | # Check if installed |
| LOW | src/superclaude/execution/self_correction.py | 314 | # Check if similar failure exists (increment recurrence) |
| LOW | src/superclaude/execution/reflection.py | 296 | # Check if context provided |
| LOW | src/superclaude/scripts/clean_command_names.py | 59 | # Check if modification is needed |
| LOW | src/superclaude/scripts/clean_command_names.py | 101 | # Read file content |
| Severity | File | Line | Snippet |
|---|---|---|---|
| MEDIUM | plugins/superclaude/scripts/clean_command_names.py | 86 | print(f"Error: Directory not found: {commands_dir}", file=sys.stderr) |
| LOW | plugins/superclaude/scripts/clean_command_names.py | 115 | except Exception as e: |
| LOW | plugins/superclaude/scripts/clean_command_names.py | 159 | except Exception as e: |
| LOW | …s/research/research_installer_improvements_20251017.md | 226 | except Exception as e: |
| LOW | docs/research/complete-python-skills-migration.md | 170 | except Exception: |
| LOW | docs/research/complete-python-skills-migration.md | 203 | except Exception as e: |
| LOW | scripts/sync_from_framework.py | 582 | except Exception as e: |
| MEDIUM | scripts/ab_test_workflows.py | 34 | print(f"Error: {self.metrics_file} not found") |
| LOW | scripts/uninstall_legacy.sh | 93 | except Exception as e: |
| LOW | src/superclaude/cli/install_skill.py | 54 | except Exception as e: |
| LOW | src/superclaude/cli/install_commands.py | 59 | except Exception as e: |
| LOW | src/superclaude/cli/install_commands.py | 233 | except Exception as e: |
| LOW | src/superclaude/cli/doctor.py | 73 | except Exception as e: |
| LOW | src/superclaude/cli/install_mcp.py | 233 | except Exception as e: |
| LOW | src/superclaude/cli/install_mcp.py | 304 | except Exception as e: |
| LOW | src/superclaude/cli/install_mcp.py | 383 | except Exception: |
| LOW | src/superclaude/cli/install_mcp.py | 420 | except Exception as e: |
| LOW | src/superclaude/cli/install_mcp.py | 608 | except Exception as e: |
| LOW | src/superclaude/execution/self_correction.py | 217 | except Exception as e: |
| LOW | src/superclaude/execution/self_correction.py | 353 | except Exception: |
| LOW | src/superclaude/execution/self_correction.py | 384 | except Exception: |
| LOW | src/superclaude/execution/reflection.py | 272 | except Exception as e: |
| LOW | src/superclaude/execution/reflection.py | 370 | except Exception as e: |
| LOW | src/superclaude/execution/__init__.py | 186 | except Exception as e: |
| LOW | src/superclaude/execution/parallel.py | 227 | except Exception as e: |
| MEDIUM | src/superclaude/scripts/clean_command_names.py | 86 | print(f"Error: Directory not found: {commands_dir}", file=sys.stderr) |
| LOW | src/superclaude/scripts/clean_command_names.py | 115 | except Exception as e: |
| LOW | src/superclaude/scripts/clean_command_names.py | 159 | except Exception as e: |
| Severity | File | Line | Snippet |
|---|---|---|---|
| HIGH | docs/user-guide/mcp-installation.md | 77 | export TAVILY_API_KEY="your-api-key-here" |
| HIGH | docs/user-guide/mcp-installation.md | 78 | export TWENTYFIRST_API_KEY="your-api-key-here" |
| HIGH | docs/user-guide/mcp-installation.md | 79 | export MORPH_API_KEY="your-api-key-here" |
| Severity | File | Line | Snippet |
|---|---|---|---|
| LOW | scripts/sync_from_framework.py | 521 | # Step 1: Clone Framework |
| LOW | scripts/sync_from_framework.py | 529 | # Step 2: Snapshot protected files BEFORE any changes |
| LOW | scripts/sync_from_framework.py | 532 | # Step 3: Create backup |
| LOW | scripts/sync_from_framework.py | 535 | # Step 4: Transform and sync content |
| LOW | scripts/sync_from_framework.py | 538 | # Step 5: Verify protected files were NOT touched |
| LOW | scripts/sync_from_framework.py | 541 | # Step 6: Generate plugin.json |
| LOW | scripts/sync_from_framework.py | 544 | # Step 7: Merge MCP configurations |
| LOW | scripts/sync_from_framework.py | 547 | # Step 8: Validate sync results |
| Severity | File | Line | Snippet |
|---|---|---|---|
| LOW | tests/unit/test_parallel.py | 12 | |
| LOW | tests/unit/test_parallel.py | 12 | |
| LOW | tests/integration/test_execution_engine.py | 8 | |
| LOW | scripts/build_superclaude_plugin.py | 9 | |
| LOW | src/superclaude/__init__.py | 12 | |
| LOW | src/superclaude/__init__.py | 13 | |
| LOW | src/superclaude/__init__.py | 14 | |
| LOW | src/superclaude/pm_agent/__init__.py | 11 | |
| LOW | src/superclaude/pm_agent/__init__.py | 12 | |
| LOW | src/superclaude/pm_agent/__init__.py | 13 | |
| LOW | src/superclaude/cli/__init__.py | 10 | |
| LOW | src/superclaude/execution/__init__.py | 22 | |
| LOW | src/superclaude/execution/__init__.py | 22 | |
| LOW | src/superclaude/execution/__init__.py | 29 | |
| LOW | src/superclaude/execution/__init__.py | 29 | |
| LOW | src/superclaude/execution/__init__.py | 30 | |
| LOW | src/superclaude/execution/__init__.py | 30 |
| Severity | File | Line | Snippet |
|---|---|---|---|
| LOW | README-kr.md | 141 | ``` |
| LOW | install.sh | 1 | #!/bin/bash |
| LOW | README-ja.md | 141 | |
| LOW | README-zh.md | 141 | |
| LOW | plugins/superclaude/commands/spec-panel.md | 321 | # Collaborative requirements analysis and improvement |
| LOW | docs/research/skills-migration-test.md | 61 | ```bash |
| LOW | docs/memory/WORKFLOW_METRICS_SCHEMA.md | 201 | |
| LOW | docs/developer-guide/testing-debugging.md | 81 | ### Verify Import System |
| LOW | docs/reference/integration-patterns.md | 21 | # React development with appropriate context |
| LOW | docs/reference/mcp-server-guide.md | 601 | # Symptoms: Uneven load distribution across MCP servers |
| LOW | docs/reference/basic-examples.md | 221 | # Step 3: Implement solutions |
| LOW | docs/reference/basic-examples.md | 261 | # Output: Product Requirements Document (PRD) with clear specifications |
| LOW | scripts/sync_from_framework.py | 461 | # What to pull from Framework and transform for Plugin distribution. |
| LOW | src/superclaude/commands/spec-panel.md | 321 | # Collaborative requirements analysis and improvement |
| Severity | File | Line | Snippet |
|---|---|---|---|
| MEDIUM | scripts/sync_from_framework.py | 460 | # ── SYNC MAPPINGS ────────────────────────────────────────────────────────── |
| MEDIUM | scripts/sync_from_framework.py | 470 | # ── PROTECTED PATHS ──────────────────────────────────────────────────────── |
| MEDIUM | scripts/sync_from_framework.py | 601 | # ── Protection helpers ───────────────────────────────────────────────────── |
| MEDIUM | scripts/sync_from_framework.py | 663 | # ── Core sync workflow ───────────────────────────────────────────────────── |
| Severity | File | Line | Snippet |
|---|---|---|---|
| LOW | scripts/sync_from_framework.py | 188 | |
| LOW | scripts/sync_from_framework.py | 610 | |
| LOW | scripts/sync_from_framework.py | 700 | |
| LOW | scripts/analyze_workflow_metrics.py | 120 | |
| LOW | src/superclaude/pm_agent/reflexion.py | 217 | |
| LOW | src/superclaude/pm_agent/reflexion.py | 349 | |
| LOW | src/superclaude/cli/install_mcp.py | 172 | |
| LOW | src/superclaude/cli/install_mcp.py | 433 | |
| LOW | src/superclaude/cli/install_mcp.py | 650 | |
| LOW | src/superclaude/execution/__init__.py | 47 |
| Severity | File | Line | Snippet |
|---|---|---|---|
| MEDIUM | src/superclaude/cli/install_mcp.py | 266 | # Create a minimal default config so the gateway can start |
| Severity | File | Line | Snippet |
|---|---|---|---|
| LOW | install.sh | 14 | # Usage: |
| Severity | File | Line | Snippet |
|---|---|---|---|
| MEDIUM | scripts/analyze_workflow_metrics.py | 217 | """Generate comprehensive analysis report""" |