Anthropic Claudeソフトウェア開発⭐ リポ 1品質スコア 53/100
juicebox-hello-world
Juiceboxの最小限の動作例を作成します。 Juiceboxを初めて使う場合や、最初の検索を作成するとき、また基本的なpeople search機能をテストするときに使用できます。「juicebox hello world」「first juicebox search」「simple juicebox example」「test juicebox」といったフレーズで実行できます。
description の原文を見る
Create a minimal working Juicebox example. Use when getting started with Juicebox, creating your first search, or testing basic people search functionality. Trigger with phrases like "juicebox hello world", "first juicebox search", "simple juicebox example", "test juicebox".
SKILL.md 本文
注意: このスキルのライセンスは ライセンス未確認 です。本サイトでは本文プレビューのみを表示しています。利用前に GitHub の原本でライセンス条件をご確認ください。
Juicebox Hello World
概要
Juicebox AIを使用して人物検索を行うための最小限の動作例を作成します。
前提条件
- Juicebox SDKがインストール済み(
juicebox-install-authが完了) - 有効なAPIキーが設定済み
- Node.jsまたはPython環境
手順
ステップ1: 検索スクリプトを作成
// search.ts
import { JuiceboxClient } from '@juicebox/sdk';
const client = new JuiceboxClient({
apiKey: process.env.JUICEBOX_API_KEY
});
async function searchPeople() {
const results = await client.search.people({
query: 'software engineer at Google',
limit: 5
});
console.log(`Found ${results.total} people`);
results.profiles.forEach(profile => {
console.log(
...
詳細情報
- 作者
- Brmbobo
- リポジトリ
- Brmbobo/Web2podcast
- ライセンス
- 不明
- 最終更新
- 2026/1/26
Source: https://github.com/Brmbobo/Web2podcast / ライセンス: 未指定