> ## Documentation Index
> Fetch the complete documentation index at: https://aisa.one/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Changelog

> AIsa platform 新功能、API additions、fixes 和 improvements 的持续更新日志。每次重要 release 都会更新。

了解 AIsa platform 的最新变化——API endpoints、documentation、developer tools 和 infrastructure changes。条目按日期分组，最新变化位于顶部。

***

## April 21, 2026

### Agent Discovery Infrastructure

AIsa 现在发布三个 machine-readable discovery endpoints，让 autonomous agents 可以在没有人工介入的情况下发现、认证并调用 AIsa 的能力。

| Endpoint           | URL                            | Protocol         |
| :----------------- | :----------------------------- | :--------------- |
| A2A Agent Card     | `/.well-known/agent-card.json` | Google A2A       |
| AI Plugin Manifest | `/.well-known/ai-plugin.json`  | OpenAI Plugin v1 |
| OpenAPI Spec       | `/openapi.yaml`                | OpenAPI 3.1.0    |

三个 endpoints 都包含 permissive CORS headers（`Access-Control-Allow-Origin: *`），因此 browser-based agents 和 web applications 可以直接 fetch。agent card 发布了 13 个 skills，并附带 tags、descriptions 和 example queries，便于 programmatic skill matching。

<Card title="Agent Discovery Guide" icon="radar" href="/zh/guides/agent-discovery">
  了解如何使用 A2A protocol、plugin manifest 和 OpenAPI spec，把你的 agents 与 AIsa 集成。
</Card>

### aisa.one 上的 Developer Tools

主站现在包含两个新的 developer-facing pages，并更新了导航结构：

**API Explorer** — 位于 [aisa.one/api-explorer](https://aisa.one/api-explorer) 的交互式 Swagger UI，可直接在浏览器中浏览、测试并集成全部 111+ AIsa endpoints。支持持久化 authorization 和 live request execution。

**Agent Discovery Page** — 位于 [aisa.one/agent-discovery](https://aisa.one/agent-discovery) 的可视化 skill explorer，支持对全部 13 个 skills 做 search 和 tag filtering，提供 Python、TypeScript 和 cURL integration code examples，并包含 live “Try It” sandbox 用于测试 discovery-to-invocation flow。

**Developers Dropdown** — navbar 现在提供 “Developers” dropdown，包含 Documentation、API Explorer、Agent Discovery 和 OpenAPI Spec 的快捷链接。

### OpenAPI Auto-Sync

新增 GitHub Actions workflow，会自动从 docs repo 合并 individual OpenAPI specs，验证生成的 `openapi.yaml`，并同步到 website repository。Slack notifications 会报告 success、no-change 或 failure 结果。

### URL Migration

所有 documentation URLs 已从 `docs.aisa.one` 迁移到 `aisa.one/docs`，`marketplace.aisa.one` 也已替换为 `console.aisa.one`。现有链接会自动 redirect。

***

## April 20, 2026

### Financial API Additions

Financial Data API 新增两个 endpoints：

| Endpoint                                 | Description                                               |
| :--------------------------------------- | :-------------------------------------------------------- |
| `GET /apis/v1/financial/prices/snapshot` | 单次请求获取多个 tickers 的 batch price snapshot                   |
| `GET /apis/v1/financial/earnings`        | Earnings data，包括 EPS actuals、estimates 和 surprise metrics |

Financial API reference pages 已按 canonical tag 重新组织，便于导航；macro interest rate pages 现在归入专门的 “Interest Rates” subheader。

### Prediction Market Fixes

Polymarket 和 Kalshi API documentation 有多项改进：

Polymarket candlestick 和 wallet PnL endpoints 已修正为使用 query parameters，而不是 path parameters，以匹配真实 API 行为。缺失的 query parameters `condition_id` 和 `wallet_address` 已加入相关 endpoints。Polymarket spec 中的 pagination example link 已更新到正确位置。

### Analyst Estimates Correction

analyst estimates endpoint 已从 “Earnings Per Share” 重命名为 “Analyst Estimates”，以准确反映其内容。description 已移除不由该 endpoint 返回的 price targets 和 analyst counts 相关表述。

***

## April 19, 2026

### CoinGecko API (23 Endpoints)

AIsa 现在提供完整 CoinGecko integration，通过 23 个 endpoints 覆盖 cryptocurrency market data。你可以用现有 AIsa API key 访问 coin prices、market charts、OHLC data、trending coins、exchange information 和 global market statistics。

<Card title="CoinGecko API Reference" icon="bitcoin-sign" href="/api-reference/coingecko/get_coingecko-simple-price">
  浏览全部 23 个 CoinGecko endpoints 及其 interactive examples。
</Card>

### Video Generation — All 4 Wan Models

Video generation documentation 已扩展，覆盖全部四个 Wan 2.7 model variants：

| Model                 | Type           | Resolution |
| :-------------------- | :------------- | :--------- |
| `wan2.7-t2v-1.3B`     | Text-to-video  | 480p       |
| `wan2.7-t2v-14B`      | Text-to-video  | 720p       |
| `wan2.7-i2v-480p-14B` | Image-to-video | 480p       |
| `wan2.7-i2v-720p-14B` | Image-to-video | 720p       |

### Navigation Restructure

Documentation tab slugs 已扁平化为 `/guides`、`/api-reference` 和 `/agent-skills`，以获得更清晰的 URLs 和更好的导航体验。

***

## April 18, 2026

### Image Generation Endpoints

API reference 新增两个 image generation pages：

**Image Generation via Chat** — 通过标准 `/v1/chat/completions` endpoint 使用 `wan2.7-image` model family 生成图片。这允许在用于文本的同一 conversational interface 中完成 image generation。

**OpenAI-Compatible Image Generations** — 通过 `/v1/images/generations` endpoint 使用 SeedREAM 生成图片，完全兼容 OpenAI Images API format。

Video task-status endpoint 已修正为对 task ID 使用 path parameter，以匹配真实 API 行为。

***

## April 17, 2026

### Twitter/X Action Endpoints

现在提供六个新的 Twitter/X action endpoints，支持完整 read-write automation：

| Endpoint                            | Method | Description            |
| :---------------------------------- | :----- | :--------------------- |
| `/apis/v1/twitter/follow_twitter`   | POST   | Follow a user          |
| `/apis/v1/twitter/unfollow_twitter` | POST   | Unfollow a user        |
| `/apis/v1/twitter/post_twitter`     | POST   | Post a tweet           |
| `/apis/v1/twitter/like_twitter`     | POST   | Like a tweet           |
| `/apis/v1/twitter/unlike_twitter`   | POST   | Unlike a tweet         |
| `/apis/v1/twitter/auth_twitter`     | POST   | Initiate OAuth linking |

这些 endpoints 补充了现有 read-only Twitter search 和 profile endpoints，让 autonomous agents 可以通过程序化方式在 Twitter/X 上互动。

### Documentation Platform Migration

AIsa documentation 已从 ReadMe.com 迁移到 Mintlify，带来更好的 navigation、interactive API playground 和更清爽的阅读体验。所有现有 documentation URLs 都会通过 automatic redirects 继续可用。

### Model Catalog Updates

welcome page 上的 model families table 已更新，以反映当前 catalogue。Pricing documentation 也已澄清：Anthropic models 按 provider rates 提供，而不是折扣价格。

### Housekeeping

多个 orphaned OpenAPI specification files 已移除，包括 stale v2 Twitter specs 和未使用的 Jina AI specs。该 cleanup 减少了 repository size，并避免 outdated endpoint definitions 造成混淆。

***

## Earlier Releases

April 17, 2026 之前的变化，请查看 [GitHub commit history](https://github.com/AIsa-team/docs/commits/main)。
