tma1-setup

Featured

Install and configure TMA1 local observability (Claude Code, Codex, GitHub Copilot CLI, OpenClaw, any OTel SDK). Use when the user says: install tma1, setup observability, monitor my agent, track token usage, set up telemetry.

AI & Automation 118 stars 14 forks Updated today Apache-2.0

Install

View on GitHub

Quality Score: 88/100

Stars 20%
69
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# TMA1 Setup You are helping the user install and configure TMA1, a local-first LLM agent observability tool. ## Step 1: Check if TMA1 is already running ```bash curl -sf http://localhost:14318/health ``` If this returns `{"status":"ok"}`, TMA1 is already running. Skip to Step 4. ## Step 2: Install TMA1 Download and install the tma1-server binary: ```bash # macOS / Linux curl -fsSL https://tma1.ai/install.sh | bash ``` ```powershell # Windows (PowerShell) irm https://tma1.ai/install.ps1 | iex ``` This installs the binary to `~/.tma1/bin/tma1-server` (or `%USERPROFILE%\.tma1\bin\tma1-server.exe` on Windows). ## Step 3: Start TMA1 On macOS/Linux the installer registers a service that auto-starts. On Windows the installer registers a Scheduled Task that auto-starts. If TMA1 is not running, start it manually: ```bash # macOS / Linux ~/.tma1/bin/tma1-server & ``` ```powershell # Windows (PowerShell) Start-Process "$env:USERPROFILE\.tma1\bin\tma1-server.exe" ``` Wait for GreptimeDB to become healthy: ```bash # macOS / Linux for i in $(seq 1 30); do if curl -sf http://localhost:14318/health > /dev/null 2>&1; then echo "TMA1 is ready." break fi sleep 1 done ``` ```powershell # Windows (PowerShell) for ($i = 0; $i -lt 30; $i++) { try { if ((Invoke-WebRequest -Uri http://localhost:14318/health -UseBasicParsing).StatusCode -eq 200) { Write-Host "TMA1 is ready."; break } } catch {} Start-Sleep -Seconds 1 } ``` If it does not become healthy after 30 sec...

Details

Author
tma1-ai
Repository
tma1-ai/tma1
Created
6 months ago
Last Updated
today
Language
Go
License
Apache-2.0

Similar Skills

Semantically similar based on skill content — not just same category