project-analyzer

project-analyzer is a skill for Claude Code from Hainrixz/agente-pagokit. It costs 88 tokens per session (1,800 once invoked), scanned A, original, MIT.

A project inspection tool that identifies the technologies already used in a codebase. It reads files such as package.json, pyproject.toml, database schemas, routes, and deployment settings.

In plain words
What is it for?
It is for examining projects built with technologies such as Node.js, Python, PHP, Ruby, Go, or .NET. It can detect frameworks such as Next.js, Express, FastAPI, Django, Laravel, and Rails, plus tools such as Prisma, Drizzle, SQLAlchemy, and Active Record.
Why use it?
It removes guesswork from later recommendations by grounding them in the actual project. It can identify the framework, programming language, database layer, deployment target, and payment-related use cases when the files provide those clues.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions CLAUDE.md.

Part of the pagokit plugin — 8 skills, 8 commands, 1 agent, 5 hooks shipped together

Good fit It is for examining projects built with technologies such as Node.js, Python, PHP, Ruby, Go, or .NET. It can detect frameworks such as Next.js, Express, FastAPI, Django, Laravel, and Rails, plus tools such as Prisma, Drizzle, SQLAlchemy, and Active Record.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/hainrixz/agente-pagokit/project-analyzer
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Hainrixz/agente-pagokit --skill project-analyzer
Clone the repo
git clone --depth 1 https://github.com/Hainrixz/agente-pagokit

Made for: Claude Code.

Or install pagokit, the plugin that ships this one along with the rest of its 8 skills, 8 commands, 1 agent, 5 hooks.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for project-analyzer

README.md
[![agentmods](https://agentmods.dev/badge/skills/hainrixz/agente-pagokit/project-analyzer/github.svg)](https://agentmods.dev/skills/hainrixz/agente-pagokit/project-analyzer)
Your own site
<a href="https://agentmods.dev/skills/hainrixz/agente-pagokit/project-analyzer"><img src="https://agentmods.dev/badge/skills/hainrixz/agente-pagokit/project-analyzer/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for project-analyzer

Your own site · 80×15
<a href="https://agentmods.dev/skills/hainrixz/agente-pagokit/project-analyzer"><img src="https://agentmods.dev/badge/skills/hainrixz/agente-pagokit/project-analyzer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 88 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,800 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Excessive Agency · line 76
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00088 $0.01800
Opus 5 $0.00044 $0.00900
Sonnet 5 $0.00018 $0.00360
Haiku 4.5 $0.00009 $0.00180

Measured 11d ago against content hash c3d0ddad8517, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

project-analyzer scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/project-analyzer/SKILL.md · 128 lines

How it starts

The opening of the file, as written. The whole thing — 128 lines — stays where its author put it; the contents beside it link to each section on GitHub.

project-analyzer

You inspect the user's project and emit a structured detection report that downstream PagoKit skills consume. You do NOT recommend a payment method — that is payment-advisor's job. You also do NOT write any files.

What you read (in order)

  1. Manifests — first hit wins for stack detection:
    • package.json (Node.js / Bun ecosystem)
    • pyproject.toml, requirements.txt, Pipfile (Python)
    • composer.json (PHP)
    • Gemfile (Ruby)
    • go.mod (Go)
    • *.csproj, *.fsproj (.NET)
  2. Framework signal — look at dependencies:
    • nextnextjs-app-router if app/ directory exists, else nextjs-pages-router
    • expressexpress
    • @nestjs/corenestjs
    • fastapifastapi
    • djangodjango
    • flaskflask
    • laravel/frameworklaravel
    • Rails: presence of Gemfile + config/application.rb
    • Default to unknown if no clear signal.
  3. ORM — look at deps + presence of schema files:
    • @prisma/client + prisma/schema.prismaprisma
    • drizzle-orm + drizzle.config.*drizzle
    • sqlalchemy + alembic.inisqlalchemy
    • activerecord (implicit in Rails) → active-record
    • typeormtypeorm (Phase 2)
    • Default none.
  4. Deploy target — look at config files (read existence, not contents):
    • vercel.json or .vercel/vercel
    • railway.toml, railway.jsonrailway
    • render.yamlrender
    • fly.tomlfly
    • Procfile (and no other PaaS file) → heroku
    • amplify.ymlaws-amplify
    • wrangler.toml, wrangler.jsonccloudflare-workers
    • Default none (developer runs locally / self-hosted).
  5. Route files — Glob for:
    • app/**/route.{ts,js} (Next.js App Router)
    • pages/api/**/*.{ts,js} (Next.js Pages Router)
    • routes/*.{js,ts,php,rb}
    • urls.py, main.py, app.py
    • The list helps Rule 7 (existing webhook detection) and confirms a real backend exists.
  6. DB schema — Glob for:
    • prisma/schema.prisma
    • drizzle/schema.{ts,js} or **/schema/*.ts
    • alembic/versions/*.py
    • db/schema.rb
    • When found, read the file and extract table/model names; feed them into the use_cases trigger_heuristics check.
  7. README + CLAUDE.md — read both to extract a one-sentence product description. Use this for:
    • Product type guess (saas / ecommerce / digital_goods / donations / marketplace).
    • Language fallback (if user's prompt language is ambiguous).

Read the full file on GitHub · 128 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 128 lines · 88 tokens per session scan A c3d0ddad8517

Subscribe to this mod's changes

project-analyzer is a skill published in the GitHub repository Hainrixz/agente-pagokit (48 stars, last pushed 10d ago), licensed MIT. It adds 88 tokens to every session and 1,800 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories