AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Prime Codebase

skill-coleam00-skills-prime-codebase · by coleam00

Primes the agent with deep codebase understanding by analyzing structure, documentation, and key files. Use when starting work on a codebase, at the beginning of a session, or when you need a fast orientation before planning or implementing. Optionally pulls external task context from Jira issues and Confluence pages first.

No reviews yet
0 installs
0 views
view→install

Install

$ agentstack add skill-coleam00-skills-prime-codebase

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-coleam00-skills-prime-codebase)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
today

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Prime Codebase? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Prime: Load Project Context

Objective

Build comprehensive understanding of the codebase by analyzing structure, documentation, and key files. If external task references are provided, load them first so the codebase analysis is anchored to the actual work.

Process

Step 0: Load External Context

Run this step BEFORE the codebase analysis. It accepts optional arguments: [jira-issue-keys] [confluence-page-ids].

  • Jira keys may be a single key (ACC-2) or comma-separated (ACC-2,ACC-3).
  • Confluence page ids are numeric page ids.

If Jira issue keys are provided:

  1. Call mcp__atlassian__getAccessibleAtlassianResources to obtain the cloudId.
  2. For each Jira key, call mcp__atlassian__getJiraIssue with that cloudId, the issue key, and responseContentFormat: "markdown".
  3. Treat the returned issue summary, description, and acceptance criteria as the task context for everything that follows.

If Confluence page ids are provided:

  1. Call mcp__atlassian__getConfluencePage for each page id with contentFormat: "markdown" (use the cloudId from above, fetching it via mcp__atlassian__getAccessibleAtlassianResources if it was not already retrieved).
  2. Treat the returned page content as supporting context (specs, design docs, requirements).

If no arguments are provided: Skip this step entirely and proceed to Step 1.

Briefly summarize any external context loaded before continuing — this frames the rest of the priming.

1. Analyze Project Structure

List all tracked files: !git ls-files

Show directory structure: On Linux, run: tree -L 3 -I 'node_modules|__pycache__|.git|dist|build'

2. Read Core Documentation

  • Read CLAUDE.md or similar global rules file
  • Read README files at project root and major directories
  • Read any architecture documentation

3. Identify Key Files

Based on the structure, identify and read:

  • Main entry points (main.py, index.ts, app.py, etc.)
  • Core configuration files (pyproject.toml, package.json, tsconfig.json)
  • Key model/schema definitions
  • Important service or controller files

4. Understand Current State

Check recent activity: !git log -10 --oneline

Check current branch and status: !git status

Output Report

Provide a concise summary covering:

External Task Context (if loaded)

  • Jira issue(s): key, title, one-line goal, acceptance criteria
  • Confluence page(s): title and what they specify

Project Overview

  • Purpose and type of application
  • Primary technologies and frameworks
  • Current version/state

Architecture

  • Overall structure and organization
  • Key architectural patterns identified
  • Important directories and their purposes

Tech Stack

  • Languages and versions
  • Frameworks and major libraries
  • Build tools and package managers
  • Testing frameworks

Core Principles

  • Code style and conventions observed
  • Documentation standards
  • Testing approach

Current State

  • Active branch
  • Recent changes or development focus
  • Any immediate observations or concerns

Make this summary easy to scan - use bullet points and clear headers.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.