arca-marketing-video 2.20.1 → 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 +14 -12
  2. package/README.md +3 -1
  3. package/package.json +1 -1
package/INSTALL.md CHANGED
@@ -14,15 +14,16 @@ Please set up the Arca marketing kit in this environment.
14
14
  PART A — install the skills (always do this):
15
15
  1. Download every folder inside the "skills/" directory of this public GitHub repo:
16
16
  https://github.com/aobalitaan/arca-marketing/tree/main/skills
17
- 2. Place each folder so it sits DIRECTLY inside my agent's skills folder (exactly one level
18
- 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
- 3. Also copy the "_arca-marketing-assets" folder into that same skills folder, right next
25
- to the skill folders. Every skill reads the brand profile and assets from it.
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.
26
27
 
27
28
  PART B — set up the video tools (only needed for the shorts-editor skill; skip if you can't):
28
29
  4. If Node.js is available, run: npx hyperframes@latest doctor
@@ -30,8 +31,9 @@ PART B — set up the video tools (only needed for the shorts-editor skill; skip
30
31
  6. Install the captions tool: pip install faster-whisper
31
32
  7. Run "npx hyperframes@latest doctor" again to confirm it's green.
32
33
 
33
- When done: list the skills you installed, say whether the video tools are ready, and tell me
34
- to start with "arca-marketing".
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".
35
37
  ```
36
38
 
37
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.
@@ -40,7 +42,7 @@ That's it — one paste does everything. Then say **"use the arca-marketing skil
40
42
 
41
43
  ## What you just installed
42
44
 
43
- Seven folders land in your skills folder:
45
+ Seven folders land in your project's skills folder (`./.claude/skills/` in the current project):
44
46
 
45
47
  - `arca-marketing` — **start here**; orients you and points to the right skill
46
48
  - `brand-builder` — Q&A that writes your brand profile
@@ -73,7 +75,7 @@ Manual equivalent, if you'd rather do it yourself:
73
75
  - **Skills CLI:** `npx skills add aobalitaan/arca-marketing`
74
76
  - **In-chat:** install the `/learn` command, then `/learn @aobalitaan/arca-marketing`
75
77
  - **npm (Claude Code):** `npx arca-marketing-video` (copies the skills into `.claude/skills/`)
76
- - **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/`).
77
79
 
78
80
  ## First steps after installing
79
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.1",
3
+ "version": "2.20.2",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/aobalitaan/arca-marketing.git"