Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/Dannykkh/skill-olympusnpx agentmods add skills/dannykkh/skill-olympus/fullstack-coding-standardsWrote 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/dannykkh/skill-olympus/fullstack-coding-standards)<a href="https://agentmods.dev/skills/dannykkh/skill-olympus/fullstack-coding-standards"><img src="https://agentmods.dev/badge/skills/dannykkh/skill-olympus/fullstack-coding-standards.svg" alt="Measured on agentmods" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 3 findings, up to high
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 →
- high Privilege Escalation · line 409 Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
- high Privilege Escalation · line 412 Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
- medium Server-Side Request Forgery · line 428 Code issues a request to a loopback, link-local, or private-range host. This can reach internal services not meant to be exposed and is a common SSRF pivot.Fix: Avoid requests to loopback/link-local/private hosts from skill code. If internal access is intended, document it and validate the target against an allowlist.
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.00053 | $0.03179 |
| Opus 5 | $0.00026 | $0.01589 |
| Sonnet 5 | $0.00011 | $0.00636 |
| Haiku 4.5 | $0.00005 | $0.00318 |
Grade A, and why
fullstack-coding-standards 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 5d 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.
const response = await fetch(url, { How it starts
The opening of the file, as written. The whole thing — 448 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Fullstack Coding Standards - 통합 패키지
포함 파일
fullstack-coding-standards/
├── SKILL.md # 이 파일 (상세 코드 예시)
├── agents/ # source-only 규칙 참고 (명시적 로드)
│ └── fullstack-coding-standards.md # 런타임 에이전트로 등록하지 않음
└── templates/ # 코드 템플릿
참조 로딩 규칙
- 이
SKILL.md를 워크플로와 예시의 소유자로 사용합니다. - 스킬을 명시적으로 호출했을 때
agents/fullstack-coding-standards.md를 읽고 현재 프로젝트에 필요한 규칙만 적용합니다. - Java/Spring Boot 또는 DB 연동 상세가 필요할 때만 해당
templates/파일을 추가로 읽습니다.
agents/ 파일이 자동 로드되거나 커스텀 에이전트로 등록되어 있다고 가정하지 마세요.
프론트엔드 코드 예시
apiClient.ts (fetch 래퍼)
// src/lib/apiClient.ts
const API_BASE_URL = import.meta.env.VITE_API_URL || '/api';
class ApiClient {
private baseUrl: string;
constructor(baseUrl: string) {
this.baseUrl = baseUrl;
}
private async request<T>(endpoint: string, options?: RequestInit): Promise<T> {
const url = `${this.baseUrl}${endpoint}`;
const response = await fetch(url, {
headers: {
'Content-Type': 'application/json',
...this.getAuthHeaders(),
},
...options,
});
if (!response.ok) {
if (response.status === 401) {
window.location.href = '/login';
throw new ApiError(401, 'Unauthorized');
}
throw new ApiError(response.status, await response.text());
}
return response.json();
}
private getAuthHeaders(): Record<string, string> {
const token = localStorage.getItem('accessToken');
return token ? { Authorization: `Bearer ${token}` } : {};
}
get<T>(endpoint: string) { return this.request<T>(endpoint); }
post<T>(endpoint: string, data: unknown) {
return this.request<T>(endpoint, { method: 'POST', body: JSON.stringify(data) });
}
put<T>(endpoint: string, data: unknown) {
return this.request<T>(endpoint, { method: 'PUT', body: JSON.stringify(data) });
}
delete<T>(endpoint: string) {
return this.request<T>(endpoint, { method: 'DELETE' });
}
}
export const apiClient = new ApiClient(API_BASE_URL);
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.
- 5d ago First seen · 448 lines · 53 tokens per session scan A 4963bbbbad2b
fullstack-coding-standards is a skill published in the GitHub repository Dannykkh/skill-olympus (5 stars, last pushed yesterday), licensed MIT. It adds 53 tokens to every session and 3,179 once invoked, about $0.0003 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
lighthouse-quick
Core Web Vitals performance check (LCP, CLS, INP). Use when: "lighthouse", "pagespeed", "performance", "core web vitals", "speed".
favicon-check
Favicon/app icon completeness check. Use when: "favicon", "icon check", "app icon", "icons".
polish
Frontend quick wins to wow effects (6 dimensions). Use when: "polish", "beautify", "improve", "wow", "improve design", "enhance", "quick wins".
om-system-extension
Extend installed Open Mercato modules through UMES enrichers, interceptors, mutation guards, widgets, menus, entity extensions, events, component/page replacements, and overrides. Use for "extend core", "add field/column/action", "hide page", "intercept API", "UMES", or "rozszerz moduł".
supabase-nextjs
Next.js with Supabase and Drizzle ORM.
cloudflare-images
This skill should be used when the user asks to "upload images to Cloudflare", "implement direct creator upload", "configure image transformations", "optimize WebP/AVIF", "create image variants", "generate signed URLs", "add image watermarks", "integrate with Next.js/Remix", "configure webhooks", "debug CORS errors"…