connections

connections(アプリ接続)

Notion Appワークフローで、型付きプロバイダー接続と接続に紐づくトリガーを扱うためのスキル。

AIスキル大辞典による日本語要約
品質評価93/100評価確度:十分
人気度(GitHub Star) 79発掘スコア 69
01

このSkillでできること

  • 型付きプロバイダー接続の設定を扱う
  • 接続に紐づくトリガーを扱う
  • 接続コードの作成・変更・トラブルシューティング時に参照すべきSDKスキルを案内する
02

使い方

01
STEP 1

Appプロジェクトルートを基準にSDKスキルのパスを解決する

02
STEP 2

接続コードを作成・変更・トラブルシューティングする前にSDKスキルを読む

03
STEP 3

SDKスキルが見つからない場合は、接続変更を続行しない

04
STEP 4

SDKスキルが利用できる状態になってから接続変更を行う

03

Skillのインストール

このGitHubリポジトリにあるSkillを確認し、現在の環境に適した方法でインストールしてください。
インストール後、正常に利用できることを確認し、基本的な使い方も簡潔に説明してください。

Repository:
https://github.com/makenotion/notion-cookbook
手動でインストールする

README / SKILL.mdから機械抽出できたコマンドのみ表示しています。推測したコマンドではありません。

git clone https://github.com/makenotion/notion-cookbook.git
cd notion-cookbook/examples/intro-to-notion-api
npm install
cp .env.example .env
npm run basic:1
npm install --global ntn
git clone https://github.com/makenotion/notion-cookbook.git
cd notion-cookbook/workers/templates/duckdb-query
npm install
npm run check
npm test
ntn login
ntn workers deploy --name duckdb-query
04

このSkillを使うプロンプト例

Skill名を明示すると、意図したSkillを使わせやすくなります。自動発動型では必須とは限りません。

Notion Appプロジェクトで接続コードを変更する前に、指定されたSDKのconnectionsスキルを確認し、必要な手順を整理してください。
出力例を見る
Appプロジェクトルートを基準にSDKスキルを確認してから、接続コードの変更手順を整理します。SDKスキルを読めない場合は変更を続行しません。
05

安全性チェック

自動解析による参考情報です。Skillの安全性を保証するものではありません。

外部API通信検出あり
Shellコマンド実行検出あり
ファイル読み取り明確な記述なし
ファイル書き込み検出あり
ネットワークアクセス検出あり
認証情報検出あり
検出根拠を見る
  • shell: om/my-integrations), share a test page with it, then: ```sh git clone https://github.com/makenotion/notion-cookbook.git cd notion-cookbook/examples/i
  • shell: query Worker is self-contained and needs no secrets: ```sh npm install --global ntn git clone https://github.com/makenotion/notion-cookbook.git cd n
  • file_write: tion-cookbook/examples/intro-to-notion-api npm install cp .env.example .env # Add NOTION_API_KEY and NOTION_PAGE_ID to .env npm run basic:1 ``` Oth
  • network: for building with the Notion API and [Notion Workers](https://developers.notion.com/docs/workers). Every example is self-contained: choose a task, open
  • network: the best first project. Create a [Notion integration](https://www.notion.com/my-integrations), share a test page with it, then: ```sh git clone https:/
  • credential: tion-api npm install cp .env.example .env # Add NOTION_API_KEY and NOTION_PAGE_ID to .env npm run basic:1 ``` Other API examples use different scripts
06

関連Skill