Support skills for agentic workspaces. Each skill helps agents configure, deploy, and maintain their working environment.
| Skill | Description |
|---|---|
| agentic-environment-settings | Discovers, validates, and deploys all configuration (env vars, secrets, files, structured configs) that a set of agents needs to run. |
npx skills add makeyourcrew/agentic-support-skillsOr install an individual skill:
npx skills add makeyourcrew/agentic-support-skills/skills/agentic-environment-settingsagentic-support-skills/
├── skills/
│ └── agentic-environment-settings/
│ ├── SKILL.md ← Skill instructions (auto-detected)
│ ├── schemas/
│ │ └── environment.schema.json ← JSON Schema for environment.json
│ └── references/
│ └── examples.md ← Real-world examples
├── README.md
└── LICENSE
- Create a new directory under
skills/<skill-name>/ - Add a
SKILL.mdwith frontmatter (name,description) and instructions - Add supporting files (
schemas/,references/, etc.) - Submit a PR
MIT