@sjinn-build/skills
v0.1.0
Published
Open source agent skills for using SJinn through the official CLI.
Readme
SJinn Skills
Open source agent skills for using SJinn through the official sjinn CLI.
The skills are open source. The SJinn CLI is the official closed-source execution layer and is required for authentication, uploads, API calls, polling, and result formatting.
Skills
| Skill | Purpose |
| --- | --- |
| sjinn-setup | Install the SJinn CLI and complete browser authorization. |
| sjinn-image-generation | Generate images and image variations with SJinn. |
| sjinn-video-generation | Generate videos with text, image, and end-frame inputs. |
| sjinn-task-status | Query asynchronous SJinn task status and output URLs. |
Requirements
- Node.js 18 or newer
- npm
- An SJinn account with access to the official CLI
Install Skills
Install into a supported agent preset:
npx @sjinn-build/skills install --agent codex
npx @sjinn-build/skills install --agent claude-code
npx @sjinn-build/skills install --agent gemini
npx @sjinn-build/skills install --agent opencode
npx @sjinn-build/skills install --agent hermes
npx @sjinn-build/skills install --agent openclawOr install to a custom skills directory:
npx @sjinn-build/skills install --target /path/to/your/agent/skillsSee INSTALL.md for all install options, including --force and --dry-run.
Quick Start
Use $sjinn-setup first:
node --version
npm install -g @sjinn-build/cli
sjinn --version
sjinn auth login
sjinn auth whoamiThen use the generation skills:
sjinn image generate --prompt "a clean product render of a glass lamp" --json
sjinn video generate --prompt "a cinematic dolly shot through a neon studio" --async --json
sjinn status <task_id> --jsonBoundary
These skills only call stable public CLI commands. They do not document or call SJinn internal service endpoints, storage signing details, or provider-specific dispatch fields.
Validation
npm run validate