Borrowing it
Nothing to install: this file belongs to go-to-k/cdkd. 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/go-to-k/cdkd/main/.claude/skills/new-integ/SKILL.mdgit clone --depth 1 https://github.com/go-to-k/cdkdWrote 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/go-to-k/cdkd/new-integ)<a href="https://agentmods.dev/skills/go-to-k/cdkd/new-integ"><img src="https://agentmods.dev/badge/skills/go-to-k/cdkd/new-integ.svg" alt="Measured on agentmods" height="20"></a>- NVIDIA SkillSpector pass
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.00035 | $0.03006 |
| Opus 5 | $0.00017 | $0.01503 |
| Sonnet 5 | $0.00007 | $0.00601 |
| Haiku 4.5 | $0.00003 | $0.00301 |
Grade A, and why
new-integ 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 2d 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.
actually works and reached AWS** (curl the endpoint / put an object and How it starts
The opening of the file, as written. The whole thing — 247 lines — stays where its author put it; the contents beside it link to each section on GitHub.
New Integration Test Scaffold
You are scaffolding a new integration test for cdkd.
Input
The user provides a kebab-case test name (e.g., ses-email-identity,
s3-event-notification).
Steps
-
Build cdkd first:
vp run buildfrom the repo root — verify.sh and the synth check both run againstdist/cli.js, so source changes without a build have no effect. -
Check the test does not already exist in
tests/integration/<test-name>/, AND that an existing fixture does not already cover the pattern. Grep for the construct/resource type acrosstests/integration/*/libbefore building — a fixture that already deploys the thing (even without a verify.sh) means the higher-value move is often to ADD a functional verify.sh to it rather than a whole new fixture. -
Read a recent fixture as the reference shape. Use
tests/integration/dynamodb-gsi-update/(deploy + UPDATE + destroy with real assertions) ortests/integration/s3-event-notification/(functional check) — NOT the oldest ones, whose conventions have drifted. -
Create the test directory at
tests/integration/<test-name>/with these files. The project runs CDK apps via Node 24 type-stripping (node bin/app.ts), so the fixture is ESM ("type": "module") and imports carry the.tsextension — there is NOts-node/tsxdependency.cdk.json:{ "app": "node bin/app.ts" }package.json(note"type": "module"; nots-node):{ "name": "cdkd-integ-<test-name>", "version": "1.0.0", "private": true, "description": "<one-line description>", "scripts": { "build": "tsc", "watch": "tsc -w" }, "devDependencies": { "@types/node": "^20.0.0", "aws-cdk": "^2.1112.0", "typescript": "^5.0.0" }, "dependencies": { "aws-cdk-lib": "^2.169.0", "constructs": "^10.0.0" }, "type": "module" }
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.
- 2d ago Changed · +16 lines ff55f4907095
- 8d ago First seen · 231 lines · 35 tokens per session scan A b4f22d535fe9
new-integ is a skill published in the GitHub repository go-to-k/cdkd (137 stars, last pushed today), licensed Apache-2.0. It adds 35 tokens to every session and 3,006 once invoked, about $0.0002 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-08-30.
Other skills, from other repositories
aws-testing
Testing strategies for AWS workloads. Use when writing unit tests, integration tests, contract tests, mocking AWS services, or setting up quality gates and CI/CD test pipelines.
dast-scanning
Perform dynamic application security testing with OWASP ZAP, Burp Suite, and Nikto. Test running applications for security vulnerabilities through automated and manual testing. Use when testing web applications, APIs, or performing penetration testing.
selenium-ui-test-generator
Generates Selenium WebDriver tests for React/Angular front-ends with STRICT loop prevention. Triggers on: "test UI", "generate Selenium tests", "test React app", "create E2E tests", "test front-end". WARNING: UI tests cost 3x more than unit tests -- generate selectively.
aws-cdk-mcp-server-mcp
AWS Cloud Development Kit (CDK) best practices, infrastructure as code patterns, and security compliance with CDK Nag.
webapp-testing
Toolkit for testing local web applications and browser workflows with MCP browser tools. Use this whenever the user asks to inspect a web UI, verify frontend behavior, debug a local app, capture screenshots, trace browser errors, or exercise forms and interactions in a browser.
python-runtime
Python toolchain configuration and best practices. Use when setting up Ruff, pytest, mypy type hints, dependency management, virtual environments or Python project standards.