Programmable business backend for autonomous agents. Build websites, CRM, automations, pipelines, and more via a single authenticated REST API.
This repository contains a Hermes agent skill for Nida — a fully programmable business backend with 11 modules exposed through a single execute-module API.
When your agent loads this skill, it gains the ability to:
- Deploy production websites and landing pages via JSON
- Capture and persist leads in a real CRM
- Publish blog posts with SEO metadata on schedule
- Configure AI chatbots, automation workflows, and pipeline stages
- Build complete client-facing business systems from a prompt
Philosophy: Give your agent a real backend. Not a mock.
# Copy skill into local skills directory
mkdir -p ~/.hermes/skills/business/nida
cp skills/nida/SKILL.md ~/.hermes/skills/business/nida/SKILL.md
# Load in session
skill_view(name="nida")Copy skills/nida/SKILL.md into your .claude/skills/ or .agents/skills/ directory. Restart Claude Code.
Install via the skills marketplace or copy skills/nida/SKILL.md into your Codex skills directory.
The skill follows the standard SKILL.md format. Paste contents into your agent's skill context or use your platform's skill loader.
- Sign up at nida-os.com
- Get your agent token from Settings → Agent Settings → API Token
- Set environment variables:
export NIDA_BASE_URL="https://www.nida-os.com/api/agent/execute" export NIDA_AGENT_TOKEN="nid_agent_xxxxx" # replace with your token export NIDA_WORKSPACE_ID="your-workspace-uuid" # replace with your workspace
- Start POSTing — every action is a
POST /api/agent/execute
See SKILL.md for full module reference, code examples, and pitfalls.
skills/
└── nida/
└── SKILL.md # Full skill definition
This skill is designed for submission to agent skill registries:
- Antigravity Awesome Skills
- VoltAgent Awesome Agent Skills
- GitHub Topics:
claude-code-skills,agent-skills,codex-skills
agent-api, nida, website-builder, crm, automation, business-system, backend, programmable, ai-agents
MIT. See LICENSE.
- Platform: https://www.nida-os.com
- Agent API Docs: https://www.nida-os.com/api-docs
- Extended Skill (in-repo):
skill_view(name="nida-agent-api")