Find a file
Ajax Davis 8b532ffa79 chore: prepare for Hacker News launch
- Add MIT LICENSE file
- Fix YOUR_ORG placeholders in README and DEPLOYMENT docs
- Fix Node.js version mismatch in release workflow (21 → 22)
- Delete 17 internal debug/development docs
- Rewrite hero section for clarity (explain what TPMJS is in seconds)
- Add "What is TPMJS?" section to landing page
- Fix hardcoded emails to hello@tpmjs.com
- Fix hardcoded dates to December 2024
- Add package metadata (author, license, repository) to all published packages
- Clean up AI-sounding language throughout
- Add comprehensive LAUNCH_REVIEW.md with checklist

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-28 11:46:59 +10:00
.changeset fix(lint): configure Biome to properly ignore build directories 2025-11-26 22:49:45 +10:00
.claude/commands feat(claude): add database slash commands for common operations 2025-11-28 02:24:28 +10:00
.github/workflows chore: prepare for Hacker News launch 2025-12-28 11:46:59 +10:00
.vscode feat: add complete monorepo structure and all packages 2025-11-25 21:59:40 +10:00
apps chore: prepare for Hacker News launch 2025-12-28 11:46:59 +10:00
docs docs: add comprehensive guide for building dynamic tool systems 2025-12-17 11:31:38 +10:00
packages chore: prepare for Hacker News launch 2025-12-28 11:46:59 +10:00
scripts refactor: rename exportName to name across entire codebase 2025-12-17 17:19:21 +10:00
services/sandbox-executor feat: add Railway-based sandbox executor microservice 2025-11-30 01:07:24 +10:00
supabase feat(sync): implement Phase 3 Sync Workers with Vercel Cron integration 2025-11-28 02:57:54 +10:00
.dependency-cruiser.js fix(ci): resolve lint and architecture errors blocking Vercel deploy 2025-12-11 09:46:27 +10:00
.gitignore feat(web): add comprehensive tool detail pages and API routes 2025-11-28 04:45:35 +10:00
.npmrc feat: add complete monorepo structure and all packages 2025-11-25 21:59:40 +10:00
.nvmrc feat: add quality gate tools and Node 22 setup 2025-11-26 17:33:45 +10:00
biome.json fix(lint): configure Biome to properly ignore build directories 2025-11-26 22:49:45 +10:00
CLAUDE.md docs: add comprehensive NPM package sync documentation and GitHub Actions workflow 2025-11-30 20:46:57 +10:00
convert-label-tests.py refactor(ui): convert all remaining components from createElement to JSX syntax 2025-11-26 03:14:34 +10:00
DEPLOYMENT.md chore: prepare for Hacker News launch 2025-12-28 11:46:59 +10:00
HOW_TO_PUBLISH_A_TOOL.md refactor: remove links, tags, and status fields from TPMJS spec 2025-12-01 05:53:48 +10:00
knip.json fix(lint): configure Biome to properly ignore build directories 2025-11-26 22:49:45 +10:00
LAUNCH_REVIEW.md chore: prepare for Hacker News launch 2025-12-28 11:46:59 +10:00
lefthook.yml perf: only type-check changed packages in pre-commit hook 2025-12-04 17:16:42 +10:00
LICENSE chore: prepare for Hacker News launch 2025-12-28 11:46:59 +10:00
manual-tools.ts refactor: rename exportName to name across entire codebase 2025-12-17 17:19:21 +10:00
MANUAL_TOOLS.md feat: implement multi-tool package architecture with manual tool registry 2025-12-04 06:39:58 +10:00
package.json chore: prepare for Hacker News launch 2025-12-28 11:46:59 +10:00
pnpm-lock.yaml feat: add Vercel Analytics to web and playground apps 2025-12-17 11:04:02 +10:00
pnpm-workspace.yaml feat(tools): create @tpmjs/createblogpost test tool package 2025-11-28 03:10:31 +10:00
QUALITY-GATES.md feat: add quality gate tools and Node 22 setup 2025-11-26 17:33:45 +10:00
README.md chore: prepare for Hacker News launch 2025-12-28 11:46:59 +10:00
reset.d.ts fix(lint): configure Biome to properly ignore build directories 2025-11-26 22:49:45 +10:00
sync-hello.ts refactor: rename exportName to name across entire codebase 2025-12-17 17:19:21 +10:00
sync-manual-tools.ts fix: add schema extraction to manual tools sync 2025-12-17 20:52:19 +10:00
sync-vercel-registry.ts refactor: rename exportName to name in ManualTool interface 2025-12-17 16:43:15 +10:00
test-db.mjs fix(ci): skip lefthook install when .git directory missing 2025-11-29 13:51:05 +10:00
test-schema.ts refactor: rename exportName to name across entire codebase 2025-12-17 17:19:21 +10:00
tsconfig.json feat: add complete monorepo structure and all packages 2025-11-25 21:59:40 +10:00
turbo.json fix(ci): ensure type-check runs after build to generate Prisma client 2025-11-28 04:09:07 +10:00
vercel.json feat: add HN launch readiness features 2025-12-14 11:56:42 +10:00

TPMJS

CI

TPMJS is a registry that lets AI agents discover and use npm packages as tools at runtime.

Instead of manually importing and configuring tools, agents search by description and load what they need on-demand. Publish your npm package with the tpmjs-tool keyword—it appears on tpmjs.com within 15 minutes.

Why TPMJS?

  • No config files - Agents discover tools by describing what they need
  • Always up-to-date - Tools load from npm at runtime, no manual updates
  • Works with any agent - Compatible with Vercel AI SDK, LangChain, OpenAI, Claude, etc.
  • Publish once - Add one keyword to package.json, publish to npm, done

Quick Start

For AI agent developers:

npm install @tpmjs/sdk
import { searchRegistry, executeRegistry } from '@tpmjs/sdk';

// Find tools by description
const tools = await searchRegistry({ query: 'parse PDF documents' });

// Execute a tool
const result = await executeRegistry({
  toolId: 'pdf-parser/extractText',
  input: { url: 'https://example.com/doc.pdf' }
});

For tool publishers:

npx @tpmjs/create-basic-tools

Or add manually to your package.json:

{
  "keywords": ["tpmjs-tool"],
  "tpmjs": {
    "category": "text-analysis",
    "description": "What your tool does"
  }
}

See HOW_TO_PUBLISH_A_TOOL.md for the full guide.


Monorepo Structure

apps/
  web/          - Next.js 16 App Router application
packages/
  config/       - Shared configurations (Biome, ESLint, Tailwind, TypeScript)
  ui/           - React component library (.ts-only, no barrels)
  utils/        - Utility functions
  types/        - Shared TypeScript types
  env/          - Zod environment schema loader
  test/         - Vitest shared configuration
  mocks/        - MSW mock server
  storybook/    - Storybook documentation

Getting Started

Prerequisites

  • Node.js >= 22 (LTS)
  • pnpm >= 8
  • nvm (recommended for Node version management)

Installation

pnpm install

Development

# Run all apps in development mode
pnpm dev

# Run specific app
pnpm --filter @tpmjs/web dev
pnpm --filter @tpmjs/storybook dev

Building

# Build all packages and apps
pnpm build

# Build specific package
pnpm --filter @tpmjs/ui build

Testing

# Run all tests
pnpm test

# Run tests in watch mode with UI
pnpm test:ui

Linting & Formatting

# Lint all packages
pnpm lint

# Format all files
pnpm format

# Check formatting
pnpm format:check

Quality Gates

# Check architecture/dependency rules
pnpm check-architecture

# Find unused code and dependencies
pnpm find-deadcode

# Check type coverage
pnpm type-coverage

See QUALITY-GATES.md for details.

Component Usage

Components are imported directly without barrel exports:

import { Button } from '@tpmjs/ui/Button/Button';
import { Card, CardHeader } from '@tpmjs/ui/Card/Card';

Important: All UI components use .ts extension (not .tsx) and use createElement instead of JSX.

Publishing Workflow

1. Create Changesets

After making changes to publishable packages:

pnpm changeset

Follow the prompts to describe your changes and select which packages are affected.

2. Version Packages

When ready to release:

pnpm changeset:version

This updates package versions and generates CHANGELOGs.

3. Publish to npm

pnpm changeset:publish

This builds and publishes all packages with changesets to npm.

4. Push to GitHub

git push --follow-tags

Published Packages

  • @tpmjs/ui - React component library
  • @tpmjs/utils - Utility functions
  • @tpmjs/types - TypeScript types
  • @tpmjs/env - Environment schema loader

Deployment

The project is configured to only deploy to Vercel when all CI checks pass. This ensures production always has high-quality, tested code.

CI Checks:

  • Linting & formatting
  • Type checking
  • Tests
  • Production build
  • Architecture validation
  • Dead code detection

See DEPLOYMENT.md for full configuration details.

Module Boundaries

ESLint enforces module boundaries:

  • Apps can import from published packages only
  • Packages cannot import from apps
  • No barrel exports (index.ts) allowed
  • Direct imports required: @tpmjs/ui/Button/Button

Architecture Decisions

Why .ts-only Components?

Using .ts instead of .tsx for React components:

  • Enforces explicit createElement calls
  • Makes React's runtime nature more visible
  • Prevents JSX spreading anti-patterns
  • Better for code generation and tooling

Why No Barrel Exports?

  • Clearer dependency graphs
  • Better tree-shaking
  • Explicit imports show what's actually used
  • Prevents circular dependencies

Why Biome + ESLint?

  • Biome: Fast formatting and basic linting
  • ESLint: Semantic rules (module boundaries, TypeScript strictness)
  • Each tool focuses on what it does best

Scripts Reference

  • dev - Start development servers
  • build - Build all packages
  • test - Run tests
  • test:ui - Run tests with UI
  • lint - Lint code
  • format - Format code with Biome
  • format:check - Check formatting
  • type-check - TypeScript type checking
  • type-coverage - Check type coverage (no implicit any)
  • check-architecture - Validate dependency rules
  • find-deadcode - Find unused code/dependencies
  • clean - Remove build artifacts
  • changeset - Create a changeset
  • changeset:version - Version packages
  • changeset:publish - Publish to npm

License

MIT