- Create comprehensive CLI with oclif framework - Add commands: auth, tool, agent, collection, mcp, publish - Add doctor, playground, and update commands - Add /cli/auth page for browser-based OAuth flow - Publish to npm as @tpmjs/cli@0.1.2
5 lines
102 B
JavaScript
5 lines
102 B
JavaScript
#!/usr/bin/env node
|
|
|
|
import { execute } from '@oclif/core';
|
|
|
|
await execute({ dir: import.meta.url });
|