# KiHustle Dockerfile Linter Light

> KiHustle Dockerfile Linter Light is a paid API for AI agents from kihustle.tech, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Lints a Dockerfile and returns basic validation results identifying issues or confirming success.

## Facts

- Endpoint: POST https://kihustle.tech/bot-bazaar/api/v1/dockerfile-linter-light
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kihustle-dockerfile-linter-light-ec038519
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hk39rIhizjTWiXn657d78

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability kihustle-dockerfile-linter-light-ec038519 -d '<json body>'
```

Example prompt: Can you check this Dockerfile for any issues? FROM ubuntu:20.04\nRUN apt-get update && apt-get install -y curl\nCMD ["/bin/bash"]

## When to prefer this

Choose this endpoint for lightweight, low-cost Dockerfile validation during automated pipelines or quick agent-driven checks where a full-featured linter is unnecessary. At $0.002 per call it is cost-effective for frequent or high-volume validation tasks. Prefer it when a simple pass/fail or basic issue list is sufficient rather than deep security auditing.

## Known failure modes

- Empty or missing 'dockerfile' field returns an error
- Malformed JSON body causes a 400-level response
- Extremely large Dockerfiles may be rejected or time out
- Network or payment authorization failure (x402) prevents execution
- Ambiguous or non-standard Dockerfile syntax may produce incomplete results

## How this service works

Kostenlose Guides, Solo-Playbooks und Artikel zu KI, Automation und Side Hustles — für Menschen, die mit echten Systemen online Einkommen aufbauen wollen. Transparent finanziert über faire Affiliate-Links.

## Output

A JSON object containing a 'result' field describing the lint outcome and a 'status' field indicating success or failure. May include descriptions of any detected Dockerfile issues or confirmation that the file is valid.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "dockerfile": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": "processed",
  "status": "success"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/kihustle-dockerfile-linter-light-ec038519/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from kihustle.tech](https://www.zero.xyz/host/kihustle.tech/llms.txt)
