# Jesse Gabriellini — SkillFrame Practice Loop Playbook

> Jesse Gabriellini — SkillFrame Practice Loop Playbook is a paid API for AI agents from jesseg.io, paid per call via x402, $4/call, status unknown (last checked 2026-09-14).

Retrieves the 'skillframe-practice-loop' playbook, a premium structured guide for skill development loops from a Phoenix operator's public business-building notes.

## Facts

- Endpoint: GET https://jesseg.io/api/playbooks/skillframe-practice-loop
- Price: $4/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/jesse-gabriellini-skillframe-practice-loop-playbook-8d9bb71e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3lDBiGhaDUK02BOllrg5o

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 jesse-gabriellini-skillframe-practice-loop-playbook-8d9bb71e
```

Example prompt: Can you pull up the skillframe practice loop playbook from Jesse Gabriellini's site — I want to read through the premium sections on the skill development loop.

## When to prefer this

Use this endpoint when you specifically need the 'skillframe-practice-loop' playbook from jesseg.io, a niche operator blog that publishes premium business and skill-development playbooks behind a micropayment wall. Prefer this over generic content APIs when the user is explicitly seeking this playbook's structured sections.

## Known failure modes

- Endpoint returns 402 if payment of $4 USDC is not provided
- Empty sections array if content has not been published yet
- Network timeout or 5xx error if jesseg.io server is unavailable
- Malformed JSON response if endpoint is misconfigured

## How this service works

Notes from a Phoenix operator building businesses in public.

## Output

Returns a JSON object containing the playbook slug ('skillframe-practice-loop'), its tier (e.g. 'premium'), and an array of sections with the structured practice loop content.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "required": [],
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "slug": "phc-system-teardown",
  "tier": "premium",
  "sections": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/jesse-gabriellini-skillframe-practice-loop-playbook-8d9bb71e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from jesseg.io](https://www.zero.xyz/host/jesseg.io/llms.txt)
