@sanity/ailf 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands/init.js +5 -0
- package/package.json +1 -1
package/dist/commands/init.js
CHANGED
|
@@ -159,4 +159,9 @@ async function runInit(opts) {
|
|
|
159
159
|
console.log(" and add it as a GitHub Actions secret (Settings → Secrets)");
|
|
160
160
|
console.log(" 4. Push — the workflow at .github/workflows/ailf-eval.yml handles the rest");
|
|
161
161
|
console.log();
|
|
162
|
+
console.log(" 💡 Get an API key with the 1Password CLI:");
|
|
163
|
+
console.log();
|
|
164
|
+
console.log(" brew install 1password-cli # if not already installed");
|
|
165
|
+
console.log(' op read "op://Shared/AI Literacy Framework - Shared API Tokens/AILF_API_KEY_DEV"');
|
|
166
|
+
console.log();
|
|
162
167
|
}
|