Installable AI skills for building Jigx solutions.
This repository contains two separate skills:
jigx- generic Jigx Core SDK app-building recipes.jigx-acumatica- Acumatica-specific integration recipes for Jigx apps.
The skills are intentionally split so generic Jigx guidance can remain reusable while Acumatica conventions, endpoint rules, sync behavior, and ERP-specific payload shapes stay isolated.
Install these skills with the Vercel Labs skills CLI:
npx skills add jigx-com/skills --skill jigx --skill jigx-acumatica --agent claude-code --agent codex --globalUse the non-interactive shorthand when scripting installs:
npx skills add jigx-com/skills -s jigx -s jigx-acumatica -a claude-code -a codex -g -yIf the repository is private or you prefer SSH, use the Git URL:
npx skills add git@github.com:jigx-com/skills.git --skill jigx --skill jigx-acumatica --agent claude-code --agent codex --globalClaude Code only:
npx skills add jigx-com/skills --skill jigx --skill jigx-acumatica --agent claude-code --globalCodex only:
npx skills add jigx-com/skills --skill jigx --skill jigx-acumatica --agent codex --globalRun this from the project repository when the skills should apply only to that project:
npx skills add jigx-com/skills --skill jigx --skill jigx-acumatica --agent claude-code --agent codexProject-local installs are useful when a repository needs pinned skill content checked into the project workspace rather than installed globally for every agent session.
List installed skills:
npx skills listUpdate installed skills from this repository:
npx skills update jigx
npx skills update jigx-acumaticaRemove installed skills:
npx skills remove jigx
npx skills remove jigx-acumaticaGlobal installs are written to the agent's global skill directory:
- Claude Code:
~/.claude/skills/ - Codex:
~/.codex/skills/
Project-local installs are written under the current repository:
- Claude Code:
.claude/skills/ - Codex:
.agents/skills/
Use jigx for all generic Jigx app work: screens, forms, datasources, navigation,
tabs, media, PDFs, local data, validation, generated YAML, and build/deploy workflows.
Use jigx-acumatica together with jigx when the app integrates with Acumatica:
REST/OData functions, acuerp tokens, acumaticaURL casing, lookup expands,
local-first sync, command queue retry, file upload, PDF attachment, and service order
submission patterns.