hiromaily

typescript-development

@hiromaily/typescript-development
hiromaily
119
31 forks
Updated 1/18/2026
View on GitHub

TypeScript/JavaScript development workflow for apps/ directory. Use when modifying TypeScript code in ripple-lib-server or JavaScript in erc20-token.

Installation

$skills install @hiromaily/typescript-development
Claude Code
Cursor
Copilot
Codex
Antigravity

Details

Path.claude/skills/typescript-development/SKILL.md
Branchmain
Scoped Name@hiromaily/typescript-development

Usage

After installing, this skill will be available to your AI coding assistant.

Verify installation:

skills list

Skill Instructions


name: typescript-development description: TypeScript/JavaScript development workflow for apps/ directory. Use when modifying TypeScript code in ripple-lib-server or JavaScript in erc20-token.

TypeScript/JavaScript Development Workflow

Workflow for TypeScript/JavaScript code changes in apps/ directory.

Prerequisites

  • Use git-workflow Skill for branch management, commit conventions, and PR creation.
  • Refer to .claude/rules/typescript.md for detailed verification commands (SSOT).

Applicable Directories

AppLanguagePath
ripple-lib-serverTypeScriptapps/ripple-lib-server/
erc20-tokenJavaScriptapps/erc20-token/

Workflow

1. Make Changes

Edit TypeScript/JavaScript files following the rules in .claude/rules/typescript.md.

2. Verify (from rules/typescript.md)

# ripple-lib-server
cd apps/ripple-lib-server && yarn lint && yarn test

# erc20-token
cd apps/erc20-token && npm run lint-js && npm run fmt

3. Self-Review Checklist

  • No TypeScript errors
  • No any types (unless documented reason)
  • Async errors properly handled
  • Auto-generated files not edited

Related

  • .claude/rules/typescript.md - TypeScript rules (SSOT)
  • git-workflow - Branch, commit, PR workflow
  • solidity-development - For Solidity contracts in erc20-token