create-semaphor-app 0.1.0 → 0.1.1
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/README.md +15 -0
- package/bin/create-semaphor-app.mjs +6 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -57,3 +57,18 @@ Then open Codex or Claude Code in the project and ask:
|
|
|
57
57
|
```text
|
|
58
58
|
@semaphor Build a Data App from my Semaphor project.
|
|
59
59
|
```
|
|
60
|
+
|
|
61
|
+
For Codex OAuth, run:
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
codex mcp login semaphor
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
For Claude Code OAuth, start Claude Code and run the interactive MCP flow:
|
|
68
|
+
|
|
69
|
+
```text
|
|
70
|
+
claude
|
|
71
|
+
/mcp
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
Then complete auth for the `semaphor` server.
|
|
@@ -443,8 +443,13 @@ function printNextSteps({ targetDir, packageManager, pluginSummary }) {
|
|
|
443
443
|
for (const result of installed) {
|
|
444
444
|
console.log(` - ${result.agent}`);
|
|
445
445
|
}
|
|
446
|
-
console.log('\nAuthenticate when your agent asks
|
|
446
|
+
console.log('\nAuthenticate when your agent asks.');
|
|
447
|
+
console.log('\nCodex:');
|
|
447
448
|
console.log(' codex mcp login semaphor');
|
|
449
|
+
console.log('\nClaude Code:');
|
|
450
|
+
console.log(' claude');
|
|
451
|
+
console.log(' /mcp');
|
|
452
|
+
console.log(' Then complete auth for the semaphor server.');
|
|
448
453
|
return;
|
|
449
454
|
}
|
|
450
455
|
|