Documentation
Type to search documentation...

TK-TIS Documentation

Everything you need to detect, diagnose, fix, and verify issues across your web infrastructure. From your first scan to full autonomous self-healing.

Tools Overview

TK-TIS consists of 8 intelligent tools. The 5 core CLI tools are available as npm packages:

Tool Purpose Plan
tk-scan HTTP health checking, security headers, stale URL detection, SEO audit Free
tk-guard Security scanning: headers, CORS, SSL, XSS, SQLi, info-leak, auth Free
tk-pulse Performance measurement: TTFB, load time, response size, speed score Free
tk-flow JSON-defined E2E test flow runner using Playwright Pro
tk-eye Visual regression testing: baseline capture + pixel diff comparison Pro
TK-Heal Self-healing infrastructure: auto-diagnose and fix issues Pro
TK-Agent AI testing agent: understands apps, writes and runs tests autonomously Pro
TAQUAI Orchestrator: private offline AI that coordinates all tools Pro

How It Works

TK-TIS operates on a four-stage pipeline:

  1. Detect — Continuous scanning across performance, security, accessibility, and uptime catches issues before users notice them.
  2. Diagnose — Root cause analysis pinpoints exactly what went wrong, providing full context instead of just alerts.
  3. Fix — Autonomous remediation applies verified, rollback-safe patches without human intervention.
  4. Verify — Post-fix validation confirms everything works with regression tests, visual diffs, and performance benchmarks.

Architecture

The platform runs on three layers:

  • CLI Tools — Lightweight npm packages that run locally or in CI/CD pipelines. Zero dependencies for tk-scan, tk-guard, and tk-pulse.
  • Cloud Backend — Hosted on Cloudflare Workers at htk-cloud-v4.enzu-agent.workers.dev. Stores results, manages projects, and handles alerting.
  • Web Dashboard — Real-time dashboard at tk-tis.pages.dev/dashboard/ for managing projects, viewing results, and configuring notifications.

Quick Start

Get scanning in 30 seconds with no signup required:

bash
# Install globally
npm install -g @tk-tis/tk-scan @tk-tis/tk-guard @tk-tis/tk-pulse

# Or run directly via npx (no install needed)
npx tk-scan https://your-site.com

# Check security
npx tk-guard https://your-site.com

# Measure performance
npx tk-pulse https://your-site.com
Tip

All CLI tools support --json output for easy integration with CI/CD pipelines and automated workflows.

Getting Help

If you run into issues or have questions:

Edit this page on GitHub