# 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-15).

Lints a Dockerfile and returns a processed validation result indicating issues or success

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/dockerfile-linter-light
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kihustle-dockerfile-linter-light-9dfab952
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_A9C1-ihOJTrhwt_ajJ_rd

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-9dfab952 -d '<json body>'
```

Example prompt: Can you lint this Dockerfile for me and tell me if there are any issues? FROM ubuntu:20.04
RUN apt-get update
RUN apt-get install -y python3

## When to prefer this

Choose this endpoint when you need a quick, low-cost ($0.002 USDC) lightweight lint pass on a Dockerfile without running a full local linter. Useful in CI pipelines, agent workflows, or serverless contexts where installing Docker tooling is impractical. If you need deep, line-by-line diagnostics or security scanning, a more comprehensive linting service may be preferable.

## Known failure modes

- Missing or empty 'dockerfile' field returns an error or unexpected result
- Malformed JSON input body causes a 400-level response
- Very large Dockerfiles may time out or be rejected
- Ambiguous or partial Dockerfiles may produce incomplete linting feedback
- Network or payment (x402) failures result in no response

## 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 with a 'result' field (e.g. 'processed') and a 'status' field (e.g. 'success'), indicating whether the Dockerfile passed linting. Detailed issue reporting may vary; the light variant likely returns a summary outcome rather than exhaustive per-line diagnostics.

## 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-9dfab952/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)
