From flux
Analyzes legacy session transcripts to compute an AI-native capability score across five weighted dimensions, with optional date filtering and export.
How this command is triggered — by the user, by Claude, or both
Slash command
/flux:score [--since YYYY-MM-DD] [--until YYYY-MM-DD] [--format table|json|yaml] [--export FILE]flux/The summary Claude sees in its command listing — used to decide when to auto-load this command
# Flux Score Compute your AI-native capability score from legacy session transcript data. ## Usage Run the scoring script. The plugin root is detected automatically: ## Arguments - `--since YYYY-MM-DD` - Only analyze sessions from this date - `--until YYYY-MM-DD` - Only analyze sessions until this date - `--format table|json|yaml` - Output format (default: table) - `--export FILE` - Export score to YAML file for recruiting/evidence ## Dimensions | Dimension | Weight | What it measures | |-----------|--------|------------------| | Interview Depth | 25% | Exploration before impleme...
Compute your AI-native capability score from legacy session transcript data.
Run the scoring script. The plugin root is detected automatically:
# Detect plugin root
PLUGIN_ROOT="${DROID_PLUGIN_ROOT:-${CLAUDE_PLUGIN_ROOT:-$(git rev-parse --show-toplevel 2>/dev/null || pwd)}}"
if [ -z "$PLUGIN_ROOT" ]; then
# Fallback: find latest version in plugin cache
PLUGIN_ROOT=$(ls -td ~/.claude/plugins/cache/nairon-flux/flux/*/ 2>/dev/null | head -1)
fi
python3 "${PLUGIN_ROOT}/scripts/flux-score.py" $ARGUMENTS
--since YYYY-MM-DD - Only analyze sessions from this date--until YYYY-MM-DD - Only analyze sessions until this date--format table|json|yaml - Output format (default: table)--export FILE - Export score to YAML file for recruiting/evidence| Dimension | Weight | What it measures |
|---|---|---|
| Interview Depth | 25% | Exploration before implementation |
| Pushback Ratio | 20% | Critical evaluation of AI suggestions |
| Prompt Quality | 25% | Specificity, file refs, requirements |
| Iteration Efficiency | 15% | Prompts-to-completion, error rate |
| Tool Breadth | 15% | Diversity across SDLC phases |
npx claudepluginhub nairon-ai/flux --plugin flux/scoreCalculates a lead score by collecting demographic and behavioral data through interactive prompts, applying a configurable weighting model, and producing a scored result with optional breakdown and next steps.
/scoreScores NL programming artifacts on a 100-point quality rubric with parallel heuristics and vagueness detection, generates a report with per-file scores, issue lists, and threshold pass/fail analysis.
/scoreCalculates automation potential scores for responsibilities using a 6-factor weighted algorithm, producing overall scores, factor breakdowns, tiers, priorities, ROI estimates, and risks.