extuitive 0.1.0
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/LICENSE +21 -0
- package/README.md +26 -0
- package/bin/extuitive.mjs +10 -0
- package/package.json +42 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 FL100 Inc.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# extuitive
|
|
2
|
+
|
|
3
|
+
Installs the [Extuitive](https://extuitive.com) agent skill into Claude Code, Codex, or
|
|
4
|
+
Claude Desktop and connects it to the Extuitive MCP server.
|
|
5
|
+
|
|
6
|
+
```bash
|
|
7
|
+
npx extuitive install
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
Then, in your agent, say **"Check my Extuitive connection"** to sign in.
|
|
11
|
+
|
|
12
|
+
Other commands:
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
npx extuitive install --host codex --yes # no prompts; --host claude | codex | claude-desktop | all
|
|
16
|
+
npx extuitive doctor # check what is installed and connected
|
|
17
|
+
npx extuitive update # refresh the skill in place
|
|
18
|
+
npx extuitive uninstall # remove it, keeping backups
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
This package is the command only. The skill and installer are in
|
|
22
|
+
[`@extuitive/skill`](https://www.npmjs.com/package/@extuitive/skill), which it depends on.
|
|
23
|
+
Full documentation, including what gets installed where and how to talk to the skill from each
|
|
24
|
+
host, is in the [repository README](https://github.com/fl100inc/extuitive-skill#readme).
|
|
25
|
+
|
|
26
|
+
MIT licensed.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* `npx extuitive install | update | uninstall | doctor`
|
|
4
|
+
*
|
|
5
|
+
* The whole launcher. It exists so the command is `extuitive` and not `@extuitive/skill`;
|
|
6
|
+
* everything else lives in that package. Its CLI runs on import and reads
|
|
7
|
+
* `process.argv.slice(2)`, which is the same slice whether node was handed this file or
|
|
8
|
+
* that one, so there is nothing to forward.
|
|
9
|
+
*/
|
|
10
|
+
await import("@extuitive/skill/bin/cli.mjs");
|
package/package.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "extuitive",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Install the Extuitive agent skill into Claude Code, Codex, or Claude Desktop and connect it to the Extuitive MCP server.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"publishConfig": {
|
|
8
|
+
"access": "public"
|
|
9
|
+
},
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "git+https://github.com/fl100inc/extuitive-skill.git",
|
|
13
|
+
"directory": "packages/extuitive"
|
|
14
|
+
},
|
|
15
|
+
"homepage": "https://github.com/fl100inc/extuitive-skill#readme",
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/fl100inc/extuitive-skill/issues"
|
|
18
|
+
},
|
|
19
|
+
"keywords": [
|
|
20
|
+
"extuitive",
|
|
21
|
+
"mcp",
|
|
22
|
+
"claude-code",
|
|
23
|
+
"claude-desktop",
|
|
24
|
+
"codex",
|
|
25
|
+
"agent-skills",
|
|
26
|
+
"facebook-ads"
|
|
27
|
+
],
|
|
28
|
+
"bin": {
|
|
29
|
+
"extuitive": "bin/extuitive.mjs"
|
|
30
|
+
},
|
|
31
|
+
"files": [
|
|
32
|
+
"bin",
|
|
33
|
+
"README.md",
|
|
34
|
+
"LICENSE"
|
|
35
|
+
],
|
|
36
|
+
"engines": {
|
|
37
|
+
"node": ">=20"
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"@extuitive/skill": "^0.1.0"
|
|
41
|
+
}
|
|
42
|
+
}
|