aceternity-ui
100+ animated React components (Aceternity UI) for Next.js with Tailwind. Use for hero sections, parallax, 3D effects, or encountering animation, shadcn CLI…
TypeScript version migration guide (5.x to 6 to 7, tsgo native port). Use for TS 6 tsconfig breaking changes, TS 7 Go rewrite rollout, or TS5xxx deprecation codes.
$ npx -y skills add secondsky/claude-skills --skill typescript-migration --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/typescript-migrationContext preview
The summary Claude sees to decide when to auto-load this skill.
TypeScript version migration guide (5.x to 6 to 7, tsgo native port). Use for TS 6 tsconfig breaking changes, TS 7 Go rewrite rollout, or TS5xxx deprecation codes.
name: typescript-migration description: "TypeScript version migration guide (5.x to 6 to 7, tsgo native port). Use for TS 6 tsconfig breaking changes, TS 7 Go rewrite rollout, or TS5xxx deprecation codes." license: MIT
Authoritative migration guide for TypeScript 5.x → 6 → 7 (native Go port). Sourced from Microsoft's official announcements.
> NEVER skip TypeScript 6. The only supported paths are **5.x → 6 → 7**. > > Skipping TS 6 produces a wall of hard errors because TS 7 removes everything TS 6 deprecated. Use `"ignoreDeprecations": "6.0"` only as a temporary pause inside TS 6; it does NOT work in TS 7.
1. **Detect current version** — run `scripts/detect-ts-version.sh` (reads `package.json`). 2. **Classify the path**:
3. **Audit before changing anything** — run `scripts/audit-ts7-breakers.sh` to detect tooling that breaks under TS 7 (typescript-eslint, ts-morph, ts-node, Vue/Svelte/Astro/MDX/Angular templates, ts-patch, ttypescript, typia, `baseUrl`, `node10`, `ES5` target).
| Project type | Recommendation | Why | |---|---|---| | Greenfield, no API-dependent tooling | Adopt TS 7 directly | Full speedup, no blockers | | Existing TS project, no special tooling | 5 → 6 → 7 sequentially | TS 6 surfaces every deprecation as a warning first | | Uses typescript-eslint / ts-morph / API consumers | 5 → 6 → 7 via `@typescript/typescript6` side-by-side | TS 7 has no programmatic API until 7.1 | | Vue / Svelte / Astro / MDX (Volar-based) | **Stay on TS 6** | Volar needs the programmatic API; not yet supported | | Angular with template type-checking | TS 7 for CLI + TS 6 for editor | Microsoft's official split workaround | | ts-patch / ttypescript / typia / custom AST transformers | **Stay on TS 6** until migrated to Oxc/SWC | Transformer API gone in TS 7 |
| Change | Old default | TS 6 default | Fix | |---|---|---|---| | `strict` | false | **true** | Set explicitly or fix errors | | `module` | CommonJS | **esnext** | Set `commonjs` if needed | | `target` | ES3 | **es2025** (floating) | Set explicitly | | `moduleResolution` | node10 | **bundler** | Set `nodenext` for Node targets | | `rootDir` | inferred | **`.` (tsconfig dir)** | Set `"rootDir": "./src"` | | `types` | all `@types` | **`[]`** | Set `"types": ["node"]` | | `esModuleInterop` | false | **true** | Remove `:false`; fix `import * as` → `import` | | `noUncheckedSideEffectImports` | false | **true** | Fix typos or set false for bundler CSS | | `libReplacement` | true | **false** | — | | `allowSyntheticDefaultImports` | varies | **true** | — |
Deprecated in 6, **HARD ERRORS in 7**: `target: es5`; `downlevelIteration`; `moduleResolution: node | node10 | classic`; `module: amd | umd | systemjs | none`; `baseUrl`; `esModuleInterop: false`; `allowSyntheticDefaultImports: false`; `alwaysStrict: false`; `outFile`; `module Foo {}` keyword; `assert { }` on imports; `/// <reference no-default-lib="true"/>`; `tsc <file>` + tsconfig present (use `--ignoreConfig`).
For full detail per change including PR citations, examples, and the official `ts5to6` codemod usage, load `references/ts6-breaking-changes.md`.
Full install options, compatibility matrix, performance tables, and known issues in `references/ts7-go-rewrite.md`.
Microsoft's recommended path for projects whose tooling depends on the TS Compiler API. Declare an alias in `package.json`:
{
"devDependencies": {
"@typescript/native": "npm:typescript@^7.0.2",
"typescript": "npm:@typescript/typescript6@^6.0.2"
}
}1. **Detect** — `scripts/detect-ts-version.sh` reports the installed ve
145 production-ready skills for Claude Code CLI 🔌 Platform / Harness Support These plugins ship as Claude Code marketplace plugins (.claude-plugin/ manifests) and Codex CLI plugins (.codex-plugin/ manifests).
Repo: secondsky/claude-skills
100+ animated React components (Aceternity UI) for Next.js with Tailwind. Use for hero sections, parallax, 3D effects, or encountering animation, shadcn CLI…
Secure API authentication with JWT, OAuth 2.0, API keys. Use for authentication systems, third-party integrations, service-to-service communication, or…
Creates comprehensive API changelogs documenting breaking changes, deprecations, and migration strategies for API consumers. Use when managing API versions,…
Verifies API contracts between services using consumer-driven contracts, schema validation, and tools like Pact. Use when testing microservices communication,…
Master REST and GraphQL API design principles to build intuitive, scalable, and maintainable APIs that delight developers. Use when designing new APIs,…
Implements standardized API error responses with proper status codes, logging, and user-friendly messages. Use when building production APIs, implementing…