@seoagent-official/seoagent 1.54.0 → 1.55.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 +20 -4
- package/package.json +9 -2
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Baxter 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
CHANGED
|
@@ -74,10 +74,26 @@ The scaffolded sync hook uses `npx -y @seoagent-official/seoagent sync --silent`
|
|
|
74
74
|
|
|
75
75
|
Then open Claude Code in this repo and say *"audit my site."* The skill takes it from there.
|
|
76
76
|
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
77
|
+
### Option C — Plugin marketplace (Claude Code or Codex)
|
|
78
|
+
|
|
79
|
+
Prefer to discover and install from inside your agent? SEOAgent ships a plugin marketplace. The plugin is a thin **bootstrap**: installing it adds a `seoagent-cli-setup` skill that walks the agent through the one-time npm `init` above — which lands the full skill bundle + `.seoagent/` workspace. So you still end up in the same place as Options A/B; this is just a discovery path.
|
|
80
|
+
|
|
81
|
+
**Claude Code:**
|
|
82
|
+
|
|
83
|
+
```text
|
|
84
|
+
/plugin marketplace add Baxter-Inc/seoagent-npm
|
|
85
|
+
/plugin install seoagent-cli-bootstrap@seoagent-official
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
**Codex** (requires a Codex version with plugin support):
|
|
89
|
+
|
|
90
|
+
```bash
|
|
91
|
+
codex plugin marketplace add Baxter-Inc/seoagent-npm
|
|
92
|
+
# then open the plugins list and install SEOAgent:
|
|
93
|
+
codex /plugins
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
Then tell the agent *"set up SEOAgent"* — it runs `init`, installing the skill to `.claude/skills/seoagent/` (Claude Code) or `.agents/skills/seoagent/` (Codex / Cursor), symlinking the other location so both agents discover it.
|
|
81
97
|
|
|
82
98
|
<!-- `npx skills add Baxter-Inc/seoagent-npm` is also wired (build.ts step 6b
|
|
83
99
|
emits skills/seoagent/SKILL.md at the mirror root for the Vercel `npx skills`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seoagent-official/seoagent",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.55.0",
|
|
4
4
|
"description": "The persistent AI SEO agent for Claude Code. Audits, keyword strategy, briefs, articles, and the autopilot loop (cloud detects → CLI executes → ack closes) — other SEO tools write the prompt, SEOAgent runs it.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
"files": [
|
|
10
10
|
"index.js",
|
|
11
11
|
"skills",
|
|
12
|
-
"assets"
|
|
12
|
+
"assets",
|
|
13
|
+
"LICENSE"
|
|
13
14
|
],
|
|
14
15
|
"engines": {
|
|
15
16
|
"node": ">=18"
|
|
@@ -29,6 +30,12 @@
|
|
|
29
30
|
"claude-code",
|
|
30
31
|
"claude-skill",
|
|
31
32
|
"claude-agent",
|
|
33
|
+
"agent-skill",
|
|
34
|
+
"agent-skills",
|
|
35
|
+
"anthropic",
|
|
36
|
+
"codex",
|
|
37
|
+
"cursor",
|
|
38
|
+
"windsurf",
|
|
32
39
|
"ai-agent",
|
|
33
40
|
"ai-seo",
|
|
34
41
|
"aeo",
|