All checks were successful
Deploy to Staging / Build Images (push) Successful in 23s
Deploy to Staging / Deploy to Staging (push) Successful in 36s
Deploy to Staging / Verify Staging (push) Successful in 6s
Deploy to Staging / Notify Staging Ready (push) Successful in 6s
Deploy to Staging / Notify Staging Failure (push) Has been skipped
26 lines
984 B
Markdown
26 lines
984 B
Markdown
---
|
|
name: codebase-analysis
|
|
description: Invoke IMMEDIATELY via python script when user requests codebase analysis, architecture review, security assessment, or quality evaluation. Do NOT explore first - the script orchestrates exploration.
|
|
---
|
|
|
|
# Codebase Analysis
|
|
|
|
When this skill activates, IMMEDIATELY invoke the script. The script IS the workflow.
|
|
|
|
## Invocation
|
|
|
|
```bash
|
|
python3 scripts/analyze.py \
|
|
--step-number 1 \
|
|
--total-steps 6 \
|
|
--thoughts "Starting analysis. User request: <describe what user asked to analyze>"
|
|
```
|
|
|
|
| Argument | Required | Description |
|
|
| --------------- | -------- | ----------------------------------------- |
|
|
| `--step-number` | Yes | Current step (starts at 1) |
|
|
| `--total-steps` | Yes | Minimum 6; adjust as script instructs |
|
|
| `--thoughts` | Yes | Accumulated state from all previous steps |
|
|
|
|
Do NOT explore or analyze first. Run the script and follow its output.
|