agentsclimarketplace

Shaktra help

Skill im-shashanks/claude-plugins/shaktra/skills/shaktra-help

Market place for custom Claude code plugins

Install
npx -y skills add im-shashanks/claude-plugins --skill shaktra-help

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Comprehensive guide to Shaktra — lists all commands, explains workflows, describes the agent architecture, and provides getting-started instructions.

SKILL.md

7.7 KB, as published. Nobody here has run it

/shaktra:help — Shaktra Guide

You are the Shaktra help system. When invoked, present the guide below verbatim. Do not add, omit, or rephrase sections. Use the markdown exactly as written. If the user appends a topic after the command (e.g., /shaktra:help tpm), present only the section most relevant to that topic.


Full Guide

Shaktra — Software Development Framework for Claude Code

Shaktra orchestrates 15 specialized AI agents through agile-inspired workflows. Every code change follows TDD, passes quality gates, and is reviewed before merge.

Core pillars: TDD-first | Multi-agent orchestration | Quality gates (P0-P3) | Sprint planning | Ceremony scaling


Commands

Workflow Commands

CommandWhat It Does
/shaktra:tpmDesign docs, user stories, sprint planning, hotfixes. The starting point for new features.
/shaktra:dev ST-###TDD implementation of a story — PLAN → RED → GREEN → QUALITY.
/shaktra:review ST-###Story-level or PR-level code review across 13 quality dimensions.
/shaktra:analyzeBrownfield codebase analysis across 9 dimensions with parallel deep analysis.
/shaktra:bugfix <desc>Bug diagnosis (5-step) followed by TDD remediation.
/shaktra:incident <ref>Post-mortem, runbook, and detection gap analysis for completed bugfixes.
/shaktra:generalDomain expertise, architectural guidance, technical questions.

Utility Commands

CommandWhat It Does
/shaktra:initInitialize .shaktra/ project structure — settings, memory, stories, designs.
/shaktra:doctorRead-only health check — validates plugin structure, config, and constraints.
/shaktra:workflowNatural language router — describe what you need, get dispatched to the right skill.
/shaktra:helpThis guide.
/shaktra:status-dashProject dashboard — version check, sprint health, quality overview.
/shaktra-updateUpdate Shaktra plugin — fetches latest, clears cache, reinstalls.

Workflows

Greenfield Project

1. /shaktra:init              → create project config
2. /shaktra:tpm               → design doc → user stories → sprint plan
3. /shaktra:dev ST-001        → TDD: PLAN → RED → GREEN → QUALITY
4. /shaktra:review ST-001     → 13-dimension code review + verification tests

Brownfield Project

1. /shaktra:init              → create project config (select brownfield)
2. /shaktra:analyze           → 9-dimension codebase assessment
3. /shaktra:tpm               → plan improvements informed by analysis
4. /shaktra:dev / review      → implement and review as above

Hotfix (Fast Path)

/shaktra:tpm hotfix: users can't log in after the OAuth migration

Creates a trivial-tier story and routes directly to /shaktra:dev. Minimal ceremony, 70% coverage threshold.

Bug Fix

/shaktra:bugfix TypeError: Cannot read property 'id' of undefined in checkout flow

Runs 5-step diagnosis — triage → reproduce → root cause → blast radius → story creation — then TDD remediation.


Agent Architecture

Shaktra uses a layered system where skills orchestrate and agents execute:

User
 │
 ├─ /shaktra:tpm ──────→ Architect, Scrummaster, Product Manager, TPM Quality
 │
 ├─ /shaktra:dev ──────→ SW Engineer, Test Agent, Developer, SW Quality
 │
 ├─ /shaktra:review ───→ CR Analyzer (4 parallel dimension groups)
 │
 ├─ /shaktra:analyze ──→ CBA Analyzer (9 parallel dimensions)
 │
 ├─ /shaktra:bugfix ───→ Bug Diagnostician → then reuses Dev pipeline
 │
 ├─ /shaktra:incident ─→ Incident Analyst (post-mortem, runbook, gaps)
 │
 └─ /shaktra:general ──→ (no sub-agents — direct domain expertise)

Two-tier quality system:

  • SW Quality — story-level checks during TDD. 36 checks per gate (PLAN/RED/GREEN).
  • Code Reviewer — app-level review after completion. 13 dimensions + independent verification tests.

Severity taxonomy:

SeverityEffectExamples
P0 CriticalMerge blockerCredentials in code, SQL injection, unbounded operations
P1 SignificantThreshold-based (default: max 2)Missing error handling, over-mocking, placeholder code
P2 QualityLogged, non-blockingHigh complexity, poor naming, dead code
P3 CosmeticLogged, non-blockingStyle inconsistencies, formatting

TDD Pipeline

Every story implementation follows this state machine:

PLAN ──→ RED ──→ GREEN ──→ QUALITY ──→ MEMORY ──→ COMPLETE
  │        │        │         │
  ▼        ▼        ▼         ▼
 SW       SW       SW        SW
Quality  Quality  Quality   Quality
 gate     gate     gate    (comprehensive)
  • PLAN — SW Engineer creates implementation + test plan
  • RED — Test Agent writes failing tests (behavioral, story-scoped)
  • GREEN — Developer implements code to make tests pass and hit coverage
  • QUALITY — SW Quality runs comprehensive 14-dimension review
  • MEMORY — Memory Curator consolidates observations into principles, anti-patterns, and procedures

Story Tiers

Process ceremony scales with story complexity:

TierCoverageDesign DocQuality Gates
Trivial (XS)70%SkipMinimal
Small (S)80%SkipCode gate only
Medium (M)90%RequiredAll gates
Large (L)95%RequiredThorough gates

Tiers are assigned during story creation based on scope, file count, and cross-cutting concerns.


Configuration

All settings live in .shaktra/settings.yml — nothing is hardcoded.

SettingDefaultWhat It Controls
tdd.coverage_threshold90%Minimum test coverage
tdd.hotfix_threshold70%Coverage for hotfix stories
quality.p1_threshold2Max P1 findings before merge block
review.min_verification_tests5Independent verification tests per review
review.verification_test_persistenceautoKeep verification tests (auto/always/never/ask)
sprints.sprint_duration_days14Sprint length

Run /shaktra:doctor after changing settings to validate your configuration.


Hooks (Automated Enforcement)

Four blocking hooks enforce constraints without manual intervention:

HookWhat It Blocks
block-main-branchGit operations directly on main/master/prod
validate-story-scopeFile changes outside the current story's scope
validate-schemaYAML files that don't match Shaktra schemas
check-p0-findingsCompletion when unresolved P0 findings exist

Hooks are all-or-nothing — they block or they don't exist. No warn-only mode.


Tips

  • Start with /shaktra:workflow if unsure which command to use — it routes based on natural language.
  • Run /shaktra:doctor after init to verify everything is configured correctly.
  • Story IDs matter/shaktra:dev ST-001 knows exactly which story to implement.
  • Hotfixes are fast/shaktra:tpm hotfix: ... skips ceremony and routes straight to dev.
  • Memory persists — observations are consolidated into principles, anti-patterns, and procedures in .shaktra/memory/ and inform future work.
  • Ceremony scales — trivial stories skip design docs; large stories get full architecture review.
  • Two quality reviewers — SW Quality checks during TDD, Code Reviewer checks after completion. They are intentionally separate.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.