@creatorarmy/openclaw-creatorarmy 1.0.0 → 1.0.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.
@@ -4,21 +4,23 @@ on:
4
4
  release:
5
5
  types: [created]
6
6
 
7
+ permissions:
8
+ contents: read
9
+ id-token: write
10
+
7
11
  jobs:
8
12
  publish:
9
13
  runs-on: ubuntu-latest
10
14
  steps:
11
15
  - uses: actions/checkout@v4
12
16
 
13
- - name: Setup Bun
14
- uses: oven-sh/setup-bun@v2
17
+ - name: Setup Node
18
+ uses: actions/setup-node@v4
15
19
  with:
16
- bun-version: 1.2.17
17
-
18
- - name: Install dependencies
19
- run: bun install --frozen-lockfile
20
+ node-version: '20'
21
+ registry-url: 'https://registry.npmjs.org'
20
22
 
21
- - name: Publish to npm
22
- run: bun publish
23
+ - name: Publish to npm with provenance
24
+ run: npm publish --access public --provenance
23
25
  env:
24
- NPM_TOKEN: ${{secrets.npm_token}}
26
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/README.md CHANGED
@@ -1 +1,62 @@
1
- # Creator-Army-Plugin
1
+ # @creatorarmy/openclaw-creatorarmy
2
+
3
+ OpenClaw plugin for Creator Army — tools and commands for managing short-form video ad and organic content creation workflows via the Creator Army API.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ openclaw install @creatorarmy/openclaw-creatorarmy
9
+ ```
10
+
11
+ Requires OpenClaw `>=2026.1.29`.
12
+
13
+ ## Setup
14
+
15
+ ```bash
16
+ openclaw creator-army setup
17
+ ```
18
+
19
+ You'll be prompted for your Creator Army API key. Check your connection with:
20
+
21
+ ```bash
22
+ openclaw creator-army status
23
+ ```
24
+
25
+ ## Commands
26
+
27
+ | Command | Description |
28
+ |---|---|
29
+ | `/health` | Verify API connection |
30
+ | `/brands` | List all configured brands |
31
+ | `/briefs [brand]` | List creative briefs (optionally filtered by brand) |
32
+
33
+ ## Demand Engine Tools
34
+
35
+ The plugin provides 12 tools for the full content creation workflow:
36
+
37
+ ### Brand Context
38
+ - `demand_engine_list_brands` — List all brands
39
+ - `demand_engine_get_context` — Get brand context (personality, tone, ICP, etc.)
40
+ - `demand_engine_save_context` — Create/update brand context
41
+
42
+ ### Customer Excavation
43
+ - `demand_engine_get_excavation` — Get customer research (barriers, motivators, core problem)
44
+ - `demand_engine_save_excavation` — Save excavation data
45
+
46
+ ### Creative Briefs
47
+ - `demand_engine_list_briefs` — List briefs
48
+ - `demand_engine_get_brief` — Get full brief details
49
+ - `demand_engine_save_brief` — Create brief with selling sequence, hooks, platform, duration
50
+
51
+ ### Scripts
52
+ - `demand_engine_list_scripts` — List ad scripts
53
+ - `demand_engine_get_script` — Get full script with persuasion checklist
54
+ - `demand_engine_save_script` — Generate new ad script
55
+
56
+ ### References
57
+ - `demand_engine_list_references` — List reference docs (hook science, selling sequences, etc.)
58
+ - `demand_engine_get_reference` — Fetch reference doc by slug
59
+
60
+ ## License
61
+
62
+ MIT
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@creatorarmy/openclaw-creatorarmy",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "type": "module",
5
- "description": "OpenClaw Creator Army plugin",
5
+ "description": "OpenClaw plugin for Creator Army — tools and commands for managing short-form video ad and organic content creation workflows via the Creator Army API",
6
6
  "license": "MIT",
7
7
  "dependencies": {
8
8
  "@sinclair/typebox": "0.34.47"
@@ -1,7 +0,0 @@
1
- {
2
- "permissions": {
3
- "allow": [
4
- "WebFetch(domain:b2a9-2403-580c-1dcc-0-181c-7d6e-4733-3836.ngrok-free.app)"
5
- ]
6
- }
7
- }