smithery.ai

typescript-development

TypeScript/JavaScript development workflow for apps/ directory. Use when modifying TypeScript code in xrpl-grpc-server or JavaScript in eth-contracts.

First seen Apr 1, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Declared agents claude-code

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,011 B
  • docs SUMMARY.md 178 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

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

App Language Runtime Path Status
xrpl-grpc-server TypeScript Bun apps/xrpl-grpc-server/ Deprecated (READ-ONLY)
eth-contracts JavaScript Node.js apps/eth-contracts/ Active

Workflow

1. Make Changes

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

2. Verify (from rules/typescript.md)

# xrpl-grpc-server (Bun)
cd apps/xrpl-grpc-server && bun run lint && bun run typecheck

# eth-contracts (Node.js/npm)
cd apps/eth-contracts && 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

Command Summary

App Lint Format Type Check
xrpl-grpc-server bun run lint bun run format bun run typecheck
eth-contracts npm run lint-js npm run fmt -

Related

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