arca-marketing-video 2.20.0 → 2.20.2

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.
Files changed (3) hide show
  1. package/INSTALL.md +28 -31
  2. package/README.md +3 -1
  3. package/package.json +1 -1
package/INSTALL.md CHANGED
@@ -9,32 +9,40 @@ You don't need to know any commands. You just ask your AI agent (ChatGPT, Claude
9
9
  Copy everything between the lines and send it to your agent:
10
10
 
11
11
  ```
12
- Please install the Arca marketing skills into this environment.
12
+ Please set up the Arca marketing kit in this environment.
13
13
 
14
+ PART A — install the skills (always do this):
14
15
  1. Download every folder inside the "skills/" directory of this public GitHub repo:
15
16
  https://github.com/aobalitaan/arca-marketing/tree/main/skills
16
-
17
- 2. Place each of those folders so it sits DIRECTLY inside my agent's skills folder
18
- (exactly one level deep — folder name, then SKILL.md inside it). Use the folder for my tool:
19
- • Claude / Claude Code -> .claude/skills/
20
- • Cursor -> .cursor/skills/
21
- • Codex -> .agents/skills/
17
+ 2. Install them into THIS PROJECT (the current working directory) — NOT globally in my home
18
+ folder. Use the project-scoped skills folder, creating it if it doesn't exist; place each
19
+ skill folder DIRECTLY inside it (exactly one level deep — folder name, then SKILL.md inside).
20
+ • Claude / Claude Code -> ./.claude/skills/ (in this project — do NOT use ~/.claude/skills)
21
+ • Cursor -> ./.cursor/skills/
22
+ • Codex -> ./.agents/skills/
22
23
  If you are ChatGPT in a sandbox without a skills folder, just keep the files in the
23
- working directory and follow each SKILL.md as instructions when I ask.
24
-
25
- 3. IMPORTANT: also copy the "_arca-marketing-assets" folder into the same skills folder,
26
- right next to the skill folders. Every skill reads the brand profile and assets from it.
27
-
28
- 4. When done, list the skills you installed and tell me to start with "arca-marketing".
24
+ current working directory and follow each SKILL.md as instructions when I ask.
25
+ 3. Also copy the "_arca-marketing-assets" folder into that same project skills folder, right
26
+ next to the skill folders. Every skill reads the brand profile and assets from it.
27
+
28
+ PART B — set up the video tools (only needed for the shorts-editor skill; skip if you can't):
29
+ 4. If Node.js is available, run: npx hyperframes@latest doctor
30
+ 5. Install anything it reports missing — usually ffmpeg and Google Chrome.
31
+ 6. Install the captions tool: pip install faster-whisper
32
+ 7. Run "npx hyperframes@latest doctor" again to confirm it's green.
33
+
34
+ When done: print the EXACT folder path you installed into (it should be inside this project,
35
+ e.g. ./.claude/skills/ — if it's in my home folder, move it into the project), list the skills,
36
+ say whether the video tools are ready, and tell me to start with "arca-marketing".
29
37
  ```
30
38
 
31
- That's it. Then say **"use the arca-marketing skill"** (or "where do I start?") and it walks you through the rest.
39
+ That's it — one paste does everything. Then say **"use the arca-marketing skill"** (or "where do I start?") and it walks you through the rest.
32
40
 
33
41
  ---
34
42
 
35
43
  ## What you just installed
36
44
 
37
- Seven folders land in your skills folder:
45
+ Seven folders land in your project's skills folder (`./.claude/skills/` in the current project):
38
46
 
39
47
  - `arca-marketing` — **start here**; orients you and points to the right skill
40
48
  - `brand-builder` — Q&A that writes your brand profile
@@ -48,28 +56,17 @@ Seven folders land in your skills folder:
48
56
 
49
57
  ---
50
58
 
51
- ## Set up the video tools (only if you'll edit videos)
52
-
53
- The image skills (`brand-builder`, `design-guide`, `carousel-generator`, `storyboard-prompt`) need nothing extra. The **video editing** skill (`shorts-editor`) renders with **HyperFrames**, which needs a few free tools: Node.js, ffmpeg, Google Chrome, and faster-whisper (for captions).
59
+ ## About the video tools (Part B above)
54
60
 
55
- Easiest: ask your agent to set it up. Paste this:
56
-
57
- ```
58
- Set up the video tools for the shorts-editor skill in this environment:
59
- 1. Make sure Node.js is installed, then run: npx hyperframes@latest doctor
60
- 2. Install anything it reports missing — usually ffmpeg and Google Chrome.
61
- 3. Install the captions tool: pip install faster-whisper
62
- 4. Run "npx hyperframes@latest doctor" again and confirm everything is green.
63
- Tell me if something can't be installed in this environment.
64
- ```
61
+ The image skills (`brand-builder`, `design-guide`, `carousel-generator`, `storyboard-prompt`) need nothing extra. Only the **video editing** skill (`shorts-editor`) needs **HyperFrames** + a few free tools — Node.js, ffmpeg, Google Chrome, and faster-whisper (for captions). Part B of the paste above sets these up; you don't need a second prompt.
65
62
 
66
- Manual equivalent:
63
+ Manual equivalent, if you'd rather do it yourself:
67
64
  - `npx hyperframes@latest doctor` — checks ffmpeg + Chrome and lists what's missing
68
65
  - **ffmpeg** — `brew install ffmpeg` (Mac), `sudo apt install ffmpeg` (Linux), or a build from ffmpeg.org (Windows)
69
66
  - **Google Chrome** — HyperFrames renders frames with it
70
67
  - **faster-whisper** — `pip install faster-whisper` (word-level captions)
71
68
 
72
- > Heads-up: this is the one part that needs a real machine/sandbox that can install ffmpeg + Chrome. If your environment can't, you can still do everything up through generating the clips, then do the final edit on a computer that can.
69
+ > Heads-up: Part B needs a real machine/sandbox that can install ffmpeg + Chrome. If your environment can't, Part A still works — do everything up through generating the clips, then run the final edit on a computer that can.
73
70
 
74
71
  ---
75
72
 
@@ -78,7 +75,7 @@ Manual equivalent:
78
75
  - **Skills CLI:** `npx skills add aobalitaan/arca-marketing`
79
76
  - **In-chat:** install the `/learn` command, then `/learn @aobalitaan/arca-marketing`
80
77
  - **npm (Claude Code):** `npx arca-marketing-video` (copies the skills into `.claude/skills/`)
81
- - **Manual:** clone the repo and copy the contents of `skills/` into your `.claude/skills/` folder.
78
+ - **Manual:** clone the repo and copy the contents of `skills/` into this project's `./.claude/skills/` folder (not the global `~/.claude/skills/`).
82
79
 
83
80
  ## First steps after installing
84
81
  1. Say **"use arca-marketing"** — it explains the kit.
package/README.md CHANGED
@@ -12,8 +12,10 @@ The simplest path (great for non-technical users): just ask your AI agent to fet
12
12
  - **Skills CLI:** `npx skills add aobalitaan/arca-marketing`
13
13
  - **In-chat:** install the `/learn` command, then `/learn @aobalitaan/arca-marketing`
14
14
  - **npm (Claude Code):** `npx arca-marketing-video` (copies the skills into `.claude/skills/`; add `--global` for `~/.claude/skills/`)
15
- - **Manual:** copy the **contents** of `skills/` into your agent's skills folder (`.claude/skills/`, `.cursor/skills/`, or `.agents/skills/`) so each skill folder sits exactly one level deep, and keep `_arca-marketing-assets/` beside them.
15
+ - **Manual:** copy the **contents** of `skills/` into your project's skills folder — `./.claude/skills/` (or `./.cursor/skills/`, `./.agents/skills/`) **in the current project directory**, so each skill folder sits exactly one level deep, and keep `_arca-marketing-assets/` beside them.
16
16
 
17
+ > **Install project-scoped, not global.** Put the skills in the project's `./.claude/skills/` (current working directory), not the global `~/.claude/skills/` in your home folder — each project keeps its own brand profile, and the skills' shared-asset paths are resolved per project. (The `npx` installer is project-scoped by default; `--global` is opt-in.)
18
+ >
17
19
  > Skills must be exactly one level deep — `.claude/skills/<name>/SKILL.md`. Don't nest them inside an extra folder, or the agent won't discover them. If your skills folder didn't exist before, restart your agent once so it starts watching it.
18
20
 
19
21
  ## The skills
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arca-marketing-video",
3
- "version": "2.20.0",
3
+ "version": "2.20.2",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/aobalitaan/arca-marketing.git"