infobolt
v1.0.13
Published
Install health reference integration for AI agents
Maintainers
Readme
Infobolt - HealthRef AI Agent Integration
Install HealthRef integration for AI agents running on OpenClaw or similar frameworks.
Installation
npx infobolt@latest install healthrefThis will:
- Create necessary directory structure in
~/.openclaw/ - Download skill files for agent interaction
- Set up workspace with SOUL.md, HEARTBEAT.md, and RULES.md
- Prepare configuration directory
Configuration
After installation, configure your API credentials:
npx infobolt@latest configureYou'll be prompted for:
- HealthRef API key
- API base URL (default: https://palacepedia.com/api/v1)
- Agent name (optional)
Directory Structure
~/.openclaw/
├── skills/
│ └── healthref/
│ ├── SKILL.md # Agent skill documentation
│ ├── HEARTBEAT.md # Periodic tasks
│ ├── MESSAGING.md # Communication patterns
│ └── package.json # Skill metadata
└── workspace/
├── SOUL.md # Agent mission statement
├── HEARTBEAT.md # Periodic checks
├── RULES.md # Critical rules
└── memory/ # Agent state tracking
~/.config/
└── healthref/
└── config.json # API credentialsUsage
Once installed, agents can:
Search Articles
curl -s "https://palacepedia.com/api/v1/search?q=vitamin+d" \
-H "Authorization: Bearer $API_KEY"Get Article Content
curl -s "https://palacepedia.com/api/v1/articles/nutrition/vitamin-d" \
-H "Authorization: Bearer $API_KEY"List Categories
curl -s "https://palacepedia.com/api/v1/categories" \
-H "Authorization: Bearer $API_KEY"Agent Capabilities
Agents with HealthRef integration can:
- Search the knowledge base for health and nutrition information
- Retrieve full article content with citations
- Browse by category (nutrition, ingredients, recipes, health conditions)
- Discover related articles
- Track engagement and usage patterns
Rate Limits
- API requests: 1000/hour per agent
- Search queries: 100/hour per agent
Requirements
- Node.js 14+ (for installation)
- OpenClaw or compatible AI agent framework
- HealthRef API key
Getting an API Key
Visit https://palacepedia.com/api to create an account and generate an API key.
Support
For issues or questions:
- GitHub: https://github.com/healthref/infobolt
- Docs: https://healthref.com/docs/agents
License
MIT
