pinterest-automation-skills
v0.1.0
Published
Pinterest Automation Dashboard skills for AI coding agents (Claude Code, Cursor, Replit, and more). Installs three markdown skill files — API reference, CSV formats, and workflow recipes — into your agent's skill directory.
Maintainers
Readme
pinterest-automation-skills
Pinterest Automation Dashboard skills for AI coding agents — Claude Code, Cursor, Replit Agent, OpenRouter-based agents, and any other tool that reads skill/rule markdown files.
Install three curated skill documents into your agent's skill directory with a single command, or import their contents programmatically.
What's inside
| Skill | What it covers |
| --- | --- |
| pinterest-api | Full REST API reference — auth, accounts, boards, pins, proxies, scheduling. |
| pinterest-csv | CSV / upload file formats — pins, boards, accounts, proxies, cookies, fingerprints. |
| pinterest-workflows | Step-by-step recipes — onboarding, bulk scheduling, proxy management, monitoring. |
Each file ships as a SKILL.md with YAML frontmatter (name, description) so Claude Code and Replit skill loaders recognize it natively.
Install
No need to add this to your package.json — just run it.
Claude Code
npx pinterest-automation-skills install --claudeInstalls into .claude/skills/pinterest-automation/ (with pinterest-api/, pinterest-csv/, and pinterest-workflows/ folders inside). Start a new Claude Code session — the skills will be auto-discovered.
Cursor
npx pinterest-automation-skills install --cursorInstalls into .cursor/rules/pinterest-automation/. Reference them in chat with @pinterest-api, @pinterest-csv, @pinterest-workflows, or enable them as always-on rules in Cursor settings.
Replit Agent
npx pinterest-automation-skills install --replitInstalls into .local/skills/pinterest-automation/. Reference by path in prompts, e.g. .local/skills/pinterest-automation/pinterest-api/SKILL.md.
Any other agent (OpenRouter, custom, etc.)
npx pinterest-automation-skills install --generic
# or a custom path:
npx pinterest-automation-skills install --dir ./my-agent/skillsInstalls into ./skills/pinterest-automation/ (or the directory you pass to --dir). Point your agent at the folder.
Flags
--force/-f— overwrite existing files--help/-h— show helplist— list the available skillswhere— print where a given target would install to, without copying
npx pinterest-automation-skills list
npx pinterest-automation-skills where --claudeProgrammatic API
If your agent reads skill content from memory rather than from disk:
import {
apiReference,
csvFormats,
workflows,
skills,
getSkillsDir,
} from "pinterest-automation-skills";
// Each export is the full markdown of one skill.
console.log(apiReference.slice(0, 200));
// `skills` is an array with metadata + content for all three.
for (const s of skills) {
console.log(s.name, "-", s.description);
}
// Or read the on-disk folder shipped with the package.
console.log(getSkillsDir());Updating
Skills evolve. Re-run the install command with --force to pull the latest version:
npm uninstall -g pinterest-automation-skills # if you installed globally
npx pinterest-automation-skills@latest install --claude --forceSource
These skills describe the Pinterest Automation Dashboard from prohunter00017/pinterest-automation-web.
License
MIT
