feat: initial public release (MAESTRO v0.1.0)

Open-source release of MAESTRO, an agent orchestration platform that runs
LLM-driven tasks through sandboxed tools, with a web UI. Apache-2.0.
See README.md and docs/ (getting-started, configuration, architecture).
This commit is contained in:
clade
2026-06-03 04:01:14 +00:00
committed by swallow
commit 7049a874f3
825 changed files with 184390 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
# SearchAmazon
Amazon.co.jp で商品を検索する。商品画像・価格・Keepa の価格推移グラフ・アフィリエイトリンクを含む整形済み Markdown を返す。
## 基本
```js
SearchAmazon({
query: "ノートPC 16GB",
limit: 5
})
```
## 出力フォーマット
```markdown
## 商品名
![商品画像](https://...)
- 価格: ¥xxx,xxx
- 評価: ★4.5 (1234件)
- [Amazon で見る](アフィリエイトリンク)
![価格推移](Keepa グラフ)
```
## 重要: 出力をそのまま埋め込む
返ってきた Markdown は **必ずそのまま最終回答に含める**
- ❌ 画像要素 `![...](...)` を省略する
- ❌ 画像をテキストリンクに置き換える
- ✅ 商品画像・Keepa グラフを含めて、全部そのまま出力に貼る
これは Amazon ガイドラインへの準拠とユーザー UX の両方の理由から。
## 設定
Settings UI の "Tools" セクション:
- **Amazon Affiliate Tag**: 必須(例: `your-tag-22`)。未設定だとアフィリエイトリンクが正しく生成されない
- **Keepa API Key**: 任意。設定すると価格推移データが詳細化(無くてもグラフ画像リンクは出る)