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.
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.
[](https://agentmods.dev/skills/pedroiff0/awesome-skills/projeto-profissional-template)<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.
<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>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.
| Model | Per session | Once 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 |
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` 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
modeno payload;authrejeita token de modo diferente (token de demo não abre produção). - Demo é acessível pela landing (
/demo/startautologa 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.
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.
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.
- 8d ago First seen · 165 lines · 139 tokens per session scan A 0f4155b7504b
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.
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.
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…
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.
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…
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…
dynamic
Fullstack development with bkend.ai BaaS — authentication, database, API integration. Triggers: fullstack, BaaS, login, signup, database, web app.