
Typescript Style
- 2 installs
- 2 repo stars
- Updated August 4, 2026
- contentstack/datasync-asset-store-filesystem
Helps with ai & agent building tasks.
About
typescript-style is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.
- typescript-style
- AI & Agent Building
- AI-coding skill
Typescript Style by the numbers
- 2 all-time installs (skills.sh)
- Ranked #13,956 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/contentstack/datasync-asset-store-filesystem --skill typescript-styleAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 2 |
|---|---|
| repo stars | ★ 2 |
| Last updated | August 4, 2026 |
| Repository | contentstack/datasync-asset-store-filesystem ↗ |
What it does
Helps with ai & agent building tasks.
Files
TypeScript style – DataSync Asset Store Filesystem
When to use
- Editing
tsconfig.json,tslint.json, or files undertypings/ - Adding or changing
.tsundersrc/and need to align with existing strictness and lint - Debugging compile errors vs published types
Instructions
- Compiler:
tsconfig.jsoncompiles onlysrc/**/*todist/(moduleCommonJS,targetES6,moduleResolutionnode,alwaysStrict,noUnusedLocals/noUnusedParameters,noImplicitReturns, etc.). Do not widen options without a deliberate reason—match existing patterns. - Declarations: Public types ship from `typings/` (
package.jsonhas"types": "./typings"). Keep.d.tsin sync withsrc/exports; the build does not emit declarations fromtsc(declaration options are commented out in tsconfig). - Lint:
npm run tslintusestslint.jsonextendingtslint:recommendedonsrc/**/*.ts. Notable rules include max line length 120, 2-space indent,no-default-export, interface names prefixed withIwhere the rule applies—follow fixes consistent with nearby files. - Dependencies:
@types/nodeand@types/jestversions inpackage.jsonare pinned for compatibility; bump types together with TS upgrades when needed.
Related skills
AI & Agent Buildingagents