Ts3 OpenClaw Plugin & Skill | ClawHub
Looking to integrate Ts3 into your AI workflows? This free OpenClaw plugin from ClawHub helps you automate web & frontend development tasks instantly, without having to write custom tools from scratch.
What this skill does
TS3 namespace for Netsnek e.U. TypeScript server-side framework. HTTP server scaffolding, middleware composition, request validation, and structured logging.
Install
openclaw skills install @kleberbaum/ts3npx clawhub@latest install ts3Full SKILL.md
Open original| name | version | description | user invocable |
|---|---|---|---|
| ts3 | 0.1.0 | TS3 namespace for Netsnek e.U. TypeScript server-side framework. HTTP server scaffolding, middleware composition, request validation, and structured logging. | true |
SKILL.md content below is scrollable.
Why TS3?
TS3 is the Netsnek e.U. TypeScript server-side framework. Build HTTP servers with minimal boilerplate: scaffolding, middleware composition, request validation, and structured logging are built in.
Architecture
- HTTP server — Express-compatible request/response
- Middleware — Composable request pipelines
- Validation — Zod or similar for request bodies
- Logging — Structured JSON logs
Server Commands
| Script | Option | Action |
|---|---|---|
| server-init.sh | --routes |
Generate route handlers |
| server-init.sh | --health |
Add health check endpoint |
| server-init.sh | --describe |
Describe server structure |
Example Session
# Bootstrap a server with routes
./scripts/server-init.sh --routes
# Add health endpoint
./scripts/server-init.sh --health
# Inspect layout
./scripts/server-init.sh --describe