Borrowing it
Nothing to install: this file belongs to hoangsonww/WealthWise-Finance-Tracker. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/hoangsonww/WealthWise-Finance-Tracker/master/.agents/skills/new-page/SKILL.mdgit clone --depth 1 https://github.com/hoangsonww/WealthWise-Finance-TrackerWrote 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/hoangsonww/wealthwise-finance-tracker/new-page)<a href="https://agentmods.dev/skills/hoangsonww/wealthwise-finance-tracker/new-page"><img src="https://agentmods.dev/badge/skills/hoangsonww/wealthwise-finance-tracker/new-page/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/hoangsonww/wealthwise-finance-tracker/new-page"><img src="https://agentmods.dev/badge/skills/hoangsonww/wealthwise-finance-tracker/new-page.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 2 findings, 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 MCP Rug Pull · line 111 npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.Fix: Pin the version: npx @scope/[email protected]
- medium MCP Rug Pull · line 112 npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.Fix: Pin the version: npx @scope/[email protected]
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.00063 | $0.00882 |
| Opus 5 | $0.00032 | $0.00441 |
| Sonnet 5 | $0.00013 | $0.00176 |
| Haiku 4.5 | $0.00006 | $0.00088 |
Grade A, and why
new-page 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.
How it starts
The opening of the file, as written. The whole thing — 116 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Scaffold a complete new dashboard page for the WealthWise web app following all project conventions.
The page/feature name is provided in the task prompt.
Scope
Create all four layers in this order:
1. TanStack Query hooks — apps/web/src/hooks/use-<entity>.ts
import { useQuery, useMutation, useQueryClient } from '@tanstack/react-query';
import { apiClient } from '@/lib/api-client';
import { toast } from 'sonner';
export const use<Entity>s = () =>
useQuery({
queryKey: ['<entities>'],
queryFn: () => apiClient.get<{ data: <Entity>Response[] }>('<entities>'),
});
export const use<Entity> = (id: string) =>
useQuery({
queryKey: ['<entities>', id],
queryFn: () => apiClient.get<{ data: <Entity>Response }>(`<entities>/${id}`),
enabled: !!id,
});
export const useCreate<Entity> = () => {
const queryClient = useQueryClient();
return useMutation({
mutationFn: (data: Create<Entity>Input) =>
apiClient.post<{ data: <Entity>Response }>('<entities>', data),
onSuccess: () => {
queryClient.invalidateQueries({ queryKey: ['<entities>'] });
toast.success('<Entity> created successfully');
},
onError: () => toast.error('Failed to create <entity>'),
});
};
// useUpdate<Entity> and useDelete<Entity> follow same pattern
Rules:
- Always use
apiClientfrom@/lib/api-client— never rawfetch - TanStack Query v5 syntax (
useQuery,useMutation) - Sonner toast on every mutation success AND error
- Proper cache invalidation in
onSuccess
2. Components — apps/web/src/components/<entity>/
Create at minimum:
<Entity>List.tsx— table or card list with loading skeleton, error state, empty state<Entity>Form.tsx— create/edit form
All components must:
- Use React Hook Form +
zodResolverwith schema from@wealthwise/shared-types - Use shadcn/ui from
components/ui/before building custom elements - Handle loading (use
<Skeleton />), error, and empty states explicitly - Work in both light and dark themes (always check
.darkclass) - Named exports only (no default exports)
- Tailwind CSS only — no inline styles except dynamic CSS custom properties
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.
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.
- 11d ago First seen · 116 lines · 63 tokens per session scan A 6ee5723efd02
new-page is a skill published in the GitHub repository hoangsonww/WealthWise-Finance-Tracker (24 stars, last pushed 3d ago), licensed MIT. It adds 63 tokens to every session and 882 once invoked, about $0.0003 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.
Other skills, from other repositories
prowler-ui
Prowler UI-specific patterns. For generic patterns, see: typescript, react-19, nextjs-16, tailwind-4. Trigger: When working inside ui/ on Prowler-specific conventions (shadcn, folder placement, actions/adapters, shared types/hooks/lib).
playwright
Playwright E2E testing patterns. Trigger: When writing Playwright E2E tests (Page Object Model, selectors, MCP exploration workflow). For Prowler-specific UI conventions under ui/tests, also use prowler-test-ui.
prowler-changelog
Manages changelog entries for Prowler components following keepachangelog.com format. Trigger: When creating PRs, adding changelog entries, or working with any CHANGELOG.md file in ui/, api/, mcpserver/, or prowler/.
tdd
Test-Driven Development workflow for ALL Prowler components (UI, SDK, API). Trigger: ALWAYS when implementing features, fixing bugs, or refactoring - regardless of component. This is a MANDATORY workflow, not optional.
prowler-test-ui
E2E testing patterns for Prowler UI (Playwright). Trigger: When writing Playwright E2E tests under ui/tests in the Prowler UI (Prowler-specific base page/helpers, tags, flows).
tailwind-4
Tailwind CSS 4 patterns and best practices. Trigger: When styling with Tailwind (className, variants, cn()), especially when dynamic styling or CSS variables are involved (no var() in className).