by tingly-dev
Your Intelligence, Orchestrated. Every builder. Every team. Every agent. For Everyone.
# Add to your Claude Code skills
git clone https://github.com/tingly-dev/tingly-boxGuides for using ai agents skills like tingly-box.
Last scanned: 5/30/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-05-30T15:06:05.814Z",
"npmAuditRan": true,
"pipAuditRan": true
}
Announcement: Here is fault record. Please update to the latest version to resolve known issues. Thank you for your continued support.
Tingly Box serves agents, coordinates AI models, optimizes context, and routes requests for maximum efficiency — with built-in remote control and secure, customizable integrations.

From npm (recommended)
# Install and run (auto restart, migrate and open webui while run without any args)
# A golang binary release but npx to wrap cli for convenience
npx tingly-box@latest
# or -y for convenience
npx -y tingly-box@latest
# if any network trouble, try bundle with binary built-in
npx -y tingly-box-bundle@latest
# npm mirror is supported for CN (one of below)
npx --registry=https://registry.npmmirror.com -y tingly-box-bundle@latest
npx --registry=https://mirrors.huaweicloud.com/repository/npm/ -y tingly-box-bundle@latest
npx --registry=http://mirrors.tencent.com/npm/ -y tingly-box-bundle@latest
if any trouble, please check tingly-box output, or call for an issue to help.
From Docker (GitHub Host)
mkdir tingly-data
docker run -d \
--name tingly-box \
-p 12580:12580 \
-v `pwd`/tingly-data:/home/tingly/.tingly-box \
ghcr.io/tingly-dev/tingly-box
From Docker Compose (Recommend for isolated env)
# Build and start in detached mode
docker-compose up -d
# View logs
docker-compose logs -f tingly-box
# Stop services
docker-compose down
# Access Web UI at http://localhost:12581
# (Note: Port 12581 is used to avoid conflict with host tingly on 12580)
Any application is ready to use.
We've provided detailed config guide in application

DeepSeek is optimized for mainstream agent workflows, offering broad compatibility across protocol adapters, agent clients, extended context, vision, web search, and cache optimization.
| Module | Status | What It Solves |
|---|---|---|
| Model List | ✅ Supported | Keeps the official model list up to date in real time |
| Protocol Adaptation | ✅ Supported | Supports official Anthropic/OpenAI APIs with bidirectional conversion |
| Reasoning Capability | ✅ Supported | Provides compatibility with Thinking workflows |
| Cache Hit Optimization | ✅ Supported | Improves cache hit rates for DeepSeek requests |
| Vision Proxy | ✅ Supported | Enables DeepSeek to understand and process images |
| Web Search | ✅ Supported | Calls official Web tools through the Anthropic endpoint |
| 1M Context Window | ✅ Supported | Enables one-click setup for 1M context |
| Codex Adaptation | ✅ Supported | Ensures compatibility with mainstream agent workflows |
| Claude Code / Desktop Adaptation | ✅ Supported | Ensures compatibility with mainstream agent workflows |
Supports one-click configuration where available. For applications that require manual setup, detailed in-app configuration guides are provided.
Any compatible application is ready to use.
Detailed configuration guides are available inside each application.
Tingly Box now supports remote control through popular IM platforms. Interact with your AI agents remotely without direct server access.
Supported Platforms
Quick Setup
http://localhost:12580Use Cases

from openai import OpenAI
client = OpenAI(
api_key="your-tingly-model-token",
base_url="http://localhost:12580/tingly/openai/v1"
)
response = client.chat.completions.create(
model="tingly-gpt",
messages=[{"role": "user", "content": "Hello!"}]
)
print(response)
from anthropic import Anthropic
client = Anthropic(
api_key="your-tingly-model-token",
base_url="http://localhost:12580/tingly/anthropic"
)
response = client.messages.create(
model="tingly",
max_tokens=1024,
messages=[
{"role": "user", "content": "Hello!"}
]
)
print(response)
Tingly Box proxies requests transparently for SDKs and CLI tools.
You can also add OAuth providers (like Claude Code) and use your existing quota in any OpenAI-compatible tool:
# 1. Add Claude Code via OAuth in Web UI (http://localhost:12580)
# 2. Configure your tool with Tingly Box endpoint
Requests route through your OAuth-authorized provider, using your existing Claude Code quota instead of requiring a separate API key.
This works with any tool that supports OpenAI-compatible endpoints: Cherry Studio, VS Code extensions, or custom AI agents.

Launch the web management interface:
npx tingly-box@latest
Then open http://localhost:12580 in your browser.

User Manual – Installation, configuration, and operational guide
Guardrails – Policy-based safety checks, built-in protections, and protected credential masking
MCP Web Tools – Local stdio MCP server for web_search / web_fetch
By contributing to this repository, you agree that your contributions may be included in this project under the MPL-2.0 and may also be used by Tingly Inc. under separate commercial licensing terms.
See CONTRIBUTING.md and NOTICE for details.
We welcome contributions! Check the steps below to build from source code.
| Tool | Version | Install |
|---|---|---|
| Go | 1.26+ | https://go.dev/doc/install |
| Node.js | 20+ | https://nodejs.org/ |
| pnpm | latest | npm install -g pnpm |
| task | latest | go install github.com/go-task/task/v3/cmd/task@latest or https://taskfile.dev/installation/ |
Tip: you can also c
tingly-box is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by tingly-dev. Your Intelligence, Orchestrated. Every builder. Every team. Every agent. For Everyone. It has 323 GitHub stars.
Yes. tingly-box passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/tingly-dev/tingly-box" and add it to your Claude Code skills directory (see the Installation section above).
tingly-box is primarily written in Go. It is open-source under tingly-dev on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh tingly-box against similar tools.
No comments yet. Be the first to share your thoughts!