# Claude Feature Watch — Anthropic/Claude Repo Monitor

> Claude Feature Watch — Anthropic/Claude Repo Monitor is a paid API for AI agents from anomaly.forgemesh.io, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Scans Anthropic and Claude GitHub repositories for recently merged features, SDK changes, Claude Code updates, and new capabilities within a configurable lookback window.

## Facts

- Endpoint: GET https://anomaly.forgemesh.io/api/claude-feature-watch
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/claude-feature-watch-anthropic-claude-repo-monitor-7c7567b8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EynNFk2kLvpPiD1dshq4m

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 claude-feature-watch-anthropic-claude-repo-monitor-7c7567b8
```

Example prompt: What features and SDK changes have been merged into the Anthropic and Claude repos over the last 14 days?

## When to prefer this

Use this endpoint when you need a curated, structured feed of recently merged changes across Anthropic's Claude and SDK repositories — especially useful for staying current on Claude Code updates, SDK breaking changes, or new model capabilities without manually polling GitHub. Prefer over raw GitHub search when you want pre-filtered, AI-tooling-relevant feature signals.

## Known failure modes

- Invalid 'days' value outside 1-30 range returns a validation error
- GitHub API rate limiting may cause incomplete scan results
- No features found in the specified window returns an empty features array
- Network timeout if GitHub is slow to respond

## How this service works

Returns a list of recently merged PRs across Anthropic/Claude repos (title, author, merge date, labels) with per-repo counts — track new Claude Code and SDK capabilities as they ship.

## Output

Returns a structured object containing a list of recently merged features with per-repo breakdowns, the number of repos scanned, total features merged, and a since timestamp — all filtered to the requested lookback window (default 7 days, up to 30).

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "days": {
       "type": "string",
       "description": "Lookback window in days: 1-30 (default: 7)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "days": {
       "type": "integer"
      },
      "since": {
       "type": "string"
      },
      "by_repo": {
       "type": "object"
      },
      "features": {
       "type": "array",
       "items": {
        "type": "object"
       }
      },
      "repos_scanned": {
       "type": "integer"
      },
      "features_merged": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "days": 7,
  "since": "2026-06-17",
  "by_repo": {
   "anthropics/claude-code": 3,
   "anthropics/anthropic-sdk-python": 2
  },
  "features": [
   {
    "repo": "anthropics/claude-code",
    "title": "Add streaming tool use support",
    "author": "contributor",
    "labels": [
     "enhancement"
    ],
    "merged_at": "2026-06-23T14:00:00Z"
   }
  ],
  "repos_scanned": 5,
  "features_merged": 5
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/claude-feature-watch-anthropic-claude-repo-monitor-7c7567b8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from anomaly.forgemesh.io](https://www.zero.xyz/host/anomaly.forgemesh.io/llms.txt)
