
Company News
Free Business Plan Upgrades for Open Source Maintainers
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.
@ttctl/cli
Advanced tools
Commander-based CLI program for the TTCtl toolkit. Powers the ttctl binary shipped by the umbrella package.
Unofficial. TTCtl is NOT affiliated with, endorsed by, or supported by Toptal LLC. See the project README for the full use policy and disclaimer.
End users should install the ttctl umbrella package — it ships the ttctl binary plus the MCP server.
This package is published separately for embedders who want to mount the Commander program inside another CLI tree, or run it standalone in a controlled context (test harness, custom wrapper).
npm install @ttctl/cli
Requires Node.js ≥ 22.19.0, ESM only.
buildProgram() — returns a commander Command with every sub-command registered: profile, applications, engagements, availability, jobs, timesheet, contracts, payments, surveys, auth. Honors the global flags --config, --output, --json, --yaml, --dry-run, --verbose, --debug (run ttctl --help for details; see the project README's Configuration section for --config precedence).presentTtctlError, exitCodeForTtctlError, formatTtctlErrorMessage — typed-error rendering for embedders that want CLI-shaped exit codes and stderr messages.TtctlError, ConfigError, ConfigErrorCode from @ttctl/core so embedders can instanceof-check error types without taking a direct @ttctl/core dependency.Minimal embedder:
import { buildProgram, presentTtctlError, TtctlError } from "@ttctl/cli";
async function main(): Promise<void> {
const program = buildProgram();
try {
await program.parseAsync(process.argv);
} catch (err) {
if (err instanceof TtctlError) {
// Writes the formatted block to stderr and calls process.exit
// with the right code (1 for auth, 2 for Cf403). Never returns.
presentTtctlError(err);
}
throw err;
}
}
await main();
AGPL-3.0-only. Importing @ttctl/cli into your own code means the combined work is covered by AGPL-3.0; using the unmodified ttctl binary as a tool does not. See the project README's License section.
FAQs
TTCtl CLI commands and program definition
We found that @ttctl/cli demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.