npx skills add https://github.com/sickn33/agentic-awesome-skills
ranbot-ai/awesome-skills
analyze-project
Forensic root cause analyzer for Antigravity sessions. Classifies scope deltas, rework patterns, root causes, hotspots, and auto-improves prompts/health.
Installation
npx skills add ranbot-ai/awesome-skills --skill analyze-project
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Analyze Terraform plan JSON output for AzureRM Provider to distinguish between false-positive d…
8.9K installsAnswer data questions -- from quick lookups to full analyses. Use when looking up a single metr…
5.3K installsPerforms deep Root Cause Analysis (RCA) on NVIDIA TAO Visual ChangeNet classification experimen…
1.6K installsPerforms gap analysis on NVIDIA TAO VCN Classify (Visual Component Net) experiments by invoking…
1.5K installsExtract false-positive and false-negative gaps from VLM binary-classification-question (BCQ, ye…
1.5K installsAnalyzes unit economics by product or service using PayPal merchant insights and QuickBooks cos…
1.4K installsAlso in this package
Other skills from ranbot-ai/awesome-skills · top by installs.
npx skills add ranbot-ai/awesome-skills
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Skill metadata
Parsed from SKILL.md frontmatter.
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md5,398 B -
docs
SUMMARY.md176 B
History
- First seen on skills.sh
- First recorded snapshot · 1 installs
SKILL.md
/analyze-project — Root Cause Analyst Workflow
Analyze AI-assisted coding sessions in ~/.gemini/antigravity/brain/ and produce a report that explains not just what happened, but why it happened, who/what caused it, and what should change next time.
Goal
For each session, determine:
- What changed from the initial ask to the final executed work
- Whether the main cause was:
- user/spec - agent - repo/codebase - validation/testing - legitimate task complexity
- Whether the opening prompt was sufficient
- Which files/subsystems repeatedly correlate with struggle
- What changes would most improve future sessions
When to Use
- You need a postmortem on AI-assisted coding sessions, especially when scope drift or repeated rework occurred.
- You want root-cause analysis that separates user/spec issues from agent mistakes, repo friction, or validation gaps.
- You need evidence-backed recommendations for improving future prompts, repo health, or delivery workflows.
Global Rules
- Treat
.resolved.Ncounts as iteration signals, not proof of failure - Separate human-added scope, necessary discovered scope, and agent-introduced scope
- Separate agent error from repo friction
- Every diagnosis must include evidence and confidence
- Confidence levels:
- High = direct artifact/timestamp evidence - Medium = multiple supporting signals - Low = plausible inference, not directly proven
- Evidence precedence:
- artifact contents > timestamps > metadata summaries > inference
- If evidence is weak, say so
Step 0.5: Session Intent Classification
Classify the primary session intent from objective + artifacts:
DELIVERYDEBUGGINGREFACTORRESEARCHEXPLORATIONAUDIT_ANALYSIS
Record:
session_intentsessionintentconfidence
Use intent to contextualize severity and rework shape. Do not judge exploratory or research sessions by the same standards as narrow delivery sessions.
Step 1: Discover Conversations
- Read available conversation summaries from system context
- List conversation folders in the user’s Antigravity
brain/directory - Build a conversation index with:
- conversationid - title - objective - created - lastmodified
- If the user supplied a keyword/path, filter to matching conversations; otherwise analyze all
Output: indexed list of conversations to analyze.
Step 2: Extract Session Evidence
For each conversation, read if present:
Core artifacts
task.mdimplementation_plan.mdwalkthrough.md
Metadata
*.metadata.json
Version snapshots
task.md.resolved.0 ... Nimplementation_plan.md.resolved.0 ... Nwalkthrough.md.resolved.0 ... N
Additional signals
- other
.mdartifacts - timestamps across artifact updates
- file/folder/subsystem names mentioned in plans/walkthroughs
- validation/testing language
- explicit acceptance criteria, constraints, non-goals, and file targets
Record per conversation:
Lifecycle
has_taskhas_planhas_walkthroughis_completedisabandonedcandidate= task exists but no walkthrough
Revision / change volume
task_versionsplan_versionswalkthrough_versionsextra_artifacts
Scope
taskitemsinitialtaskitemsfinaltaskcompletedpctscopedeltarawscopecreeppct_raw
Timing
created_atcompleted_atduration_minutes
Content / quality
objective_textinitialplansummaryfinalplansummaryinitialtaskexcerptfinaltaskexcerptwalkthrough_summarymentionedfilesor_subsystemsvalidationrequirementspresentacceptancecriteriapresentnongoalspresentscopeboundariespresentfiletargetspresentconstraints_present
Step 3: Prompt Sufficiency
Score the opening request on a 0–2 scale for:
- Clarity
- Boundedness
- Testability
- Architectural specificity
- Constraint awareness
- Dependency awareness
Create:
promptsufficiencyscorepromptsufficiencyband= High / Medium / Low
Then note which missing prompt ingredients likely contributed to later friction.
Do not punish short prompts by default; a narrow, obvious task can still have high sufficiency.
Step 4: Scope Change Classification
Classify scope change into:
- Human-added scope — new asks beyond the original task
- Necessary discovered scope — work required to complete the original task correctly
- Agent-introduced scope — likely unnecessary work introduced by the agent
Record:
scopechangetype_primaryscopechangetype_secondary(optional)scopechangeconfidence- evidence
Keep one short example in mind for calibration:
- Human-added: “also refactor nearby code while you’re here”
- Necessary discovered: hidden dependency must be fixed for original task to work
- Agent-in