projeto-profissional-template

projeto-profissional-template is a skill for Claude Code, Codex from pedroiff0/awesome-skills. It costs 139 tokens per session (2,761 once invoked), scanned A, original, MIT.

A project-specific guide for developing and operating a Node and Express web application that uses MongoDB, server-rendered EJS pages, JWT login, and Jest tests.

In plain words
What is it for?
It is for adding features, fixing interface bugs, reseeding demo data, running tests, and making commits or pushes in that particular application.
Why use it?
It records the repository’s architecture and recurring traps so changes, tests, demo data, and debugging follow the project’s existing rules.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions CLAUDE.md; mentions AGENTS.md.

Not installable: its command points at a path on the author’s own machine, so it runs nowhere else. The line is /home/pedro/Repositorios/templates/projeto-profissional.

Good fit It is for adding features, fixing interface bugs, reseeding demo data, running tests, and making commits or pushes in that particular application.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

There is no command for this one: it runs only inside a plugin, and the catalogue could not identify which plugin ships it. The source is linked below.

Made for: Claude Code, Codex.

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 projeto-profissional-template

README.md
[![agentmods](https://agentmods.dev/badge/skills/pedroiff0/awesome-skills/projeto-profissional-template/github.svg)](https://agentmods.dev/skills/pedroiff0/awesome-skills/projeto-profissional-template)
Your own site
<a href="https://agentmods.dev/skills/pedroiff0/awesome-skills/projeto-profissional-template"><img src="https://agentmods.dev/badge/skills/pedroiff0/awesome-skills/projeto-profissional-template/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 projeto-profissional-template

Your own site · 80×15
<a href="https://agentmods.dev/skills/pedroiff0/awesome-skills/projeto-profissional-template"><img src="https://agentmods.dev/badge/skills/pedroiff0/awesome-skills/projeto-profissional-template.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 139 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,761 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
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.00139 $0.02761
Opus 5 $0.00069 $0.01380
Sonnet 5 $0.00028 $0.00552
Haiku 4.5 $0.00014 $0.00276

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

Security

Grade A, and why

projeto-profissional-template scanned grade A with 1 finding 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 8d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

Confirme `curl -s -o /dev/null -w '%{http_code}' http://localhost:4450/` = `000`
skills/software-development/projeto-profissional-template/SKILL.md · 165 lines

How it starts

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

projeto-profissional template

Template base de app web do usuário: autenticação JWT (cookie httpOnly ou Bearer), papéis admin/user, registro controlado por admin, quadro Kanban, projetos, profissionais e painel. Stack: Node 20 + Express, MongoDB/Mongoose, EJS SSR + JS vanilla (sem build), Zod, Jest + Supertest. Repo em /home/pedro/Repositorios/templates/projeto-profissional, app em ./app.

Quando usar

Sempre que mexer nesse repo: adicionar feature de domínio, corrigir bug de UI, populhar/resear o banco demo, rodar a suíte de testes, ou fazer commit/push.

Arquitetura (resumo crítico)

  • Três bancos físicos na mesma instância Mongo, via connection.useDb: app_db (produção), app_test_db (teste), app_demo_db (demo). Models são registrados por connection num registry (src/models/registry.js).
  • O JWT carrega mode no payload; auth rejeita token de modo diferente (token de demo não abre produção).
  • Demo é acessível pela landing (/demo/start autologa num usuário demo).
  • Fluxo obrigatório: Rota → Controller → Service → Model. Validação Zod obrigatória em toda entrada (middleware validate(schema)).

Armadilhas recorrentes (leia antes de debugar)

1. Edições server-side NÃO surtem efeito sem restart (require-cache)

i18n.js, demoService.js, taskService.js, task.model.js, controllers, routes, schemas — todos são cacheados pelo require. Se você editar i18n.js e uma key t('task.x') ainda aparece literal no browser, NÃO é bug do código: é o servidor rodando com o módulo antigo. Reinicie o servidor (procedimento em references/server-ops.md). Esse foi o caso das keys task.*/board.intro aparecendo literais.

2. Campo novo some silenciosamente na API (Zod strip)

Se você adiciona um campo no model (ex: horario, arquivos, comentarios) mas NÃO o adiciona ao schema Zod em src/schemas/demo.schemas.js, o validate() stripa o campo — ele não persiste no PATCH/POST e volta vazio. Sempre atualize em conjunto: model + service + controller + view/JS + schema Zod. O EJS/JS pode exibir o campo, mas a API o remove.

Read the full file on GitHub · 165 lines

Files

What ships with it

3 files 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. 8d ago First seen · 165 lines · 139 tokens per session scan A 0f4155b7504b

Subscribe to this mod's changes

projeto-profissional-template is a skill published in the GitHub repository pedroiff0/awesome-skills (1 stars, last pushed 4d ago), licensed MIT. It adds 139 tokens to every session and 2,761 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

nosql-database-design

Designs a NoSQL data model by leading with access pattern analysis. Covers DynamoDB single-table design (PK/SK/GSI) and MongoDB embedding vs referencing, consistency models, and capacity planning. Invoked when the user asks to design a DynamoDB schema, MongoDB data model, or NoSQL data model.

soulcodex/agentic · 71 tokens

svix-sending-webhooks

Everything for working with Svix webhooks: first-time setup (API key, SDK install, first message), Dispatch (sending webhooks to your customers), Ingest (receiving third-party webhooks), Applications, Channels, customer UIDs, idempotency, App Portal embedding, operational webhooks, the Svix CLI, and — only when the…

svix/ai · 138 tokens

receiving-webhooks

General guidelines for building a robust webhook receiver/handler: verifying signatures, raw-body access, replay protection, async processing, retries and endpoint auto-disabling. Use whenever you write, review, or debug a handler that consumes incoming webhooks from any provider.

svix/ai · 56 tokens

firebase

Firebase gives you a complete backend in minutes - auth, database, storage, functions, hosting. But the ease of setup hides real complexity. Security rules are your last line of defense, and they're often wrong. Firestore queries are limited, and you learn this after you've designed your data model. This skill covers…

omer-metin/skills-for-antigravity · 208 tokens

supabase

Use when doing ANY task involving Supabase. Triggers: Supabase products (Database, Auth, Edge Functions, Realtime, Storage, Vectors, Cron, Queues); client libraries and SSR integrations (supabase-js, @supabase/ssr) in Next.js, React, SvelteKit, Astro, Remix; auth issues (login, logout, sessions, JWT, cookies…

supabase/agent-skills · 185 tokens

dynamic

Fullstack development with bkend.ai BaaS — authentication, database, API integration. Triggers: fullstack, BaaS, login, signup, database, web app.

ww-w-ai/bkit-claude-code · 38 tokens