Help us improve
Share bugs, ideas, or general feedback.
From chittyos-devops
Query and manage the ChittyOS service registry for service discovery and metadata.
npx claudepluginhub chittyos/chittymarket --plugin chittyos-devopsHow this skill is triggered — by the user, by Claude, or both
Slash command
/chittyos-devops:chitty-registryThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Query and manage the ChittyOS service registry for service discovery and metadata.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
Explores codebases via GitNexus: discover repos, query execution flows, trace processes, inspect symbol callers/callees, and review architecture.
Share bugs, ideas, or general feedback.
Query and manage the ChittyOS service registry for service discovery and metadata.
/registry [command] [args]
| Command | Description |
|---|---|
list | List all registered services |
get [service] | Get service details |
search [query] | Search services by name/description |
tiers | Show services grouped by tier |
status | Show registration status of all services |
Base URL: https://registry.chitty.cc
curl -s https://registry.chitty.cc/api/services | jq .
curl -s https://registry.chitty.cc/api/services/{service-id} | jq .
curl -s "https://registry.chitty.cc/api/services?q={query}" | jq .
Fallback registry data at:
/Volumes/chitty/temp/systems-registry-import-v3.csv
# List all services
cat /Volumes/chitty/temp/systems-registry-import-v3.csv | head -20
# Find specific service
grep -i "chittyid" /Volumes/chitty/temp/systems-registry-import-v3.csv
| Tier | Purpose | Services |
|---|---|---|
| 0 | Trust Anchors | ChittyID, ChittyTrust, ChittySchema |
| 1 | Core Identity | ChittyAuth, ChittyCert, ChittyRegister |
| 2 | Platform | ChittyConnect, ChittyRouter, ChittyAPI |
| 3 | Operational | ChittyMonitor, ChittyDiscovery, ChittyBeacon |
| 4 | Domain | ChittyEvidence, ChittyIntel, ChittyScore |
| 5 | Application | ChittyCases, ChittyPortal, ChittyDashboard |
{
"id": "chittyid",
"name": "ChittyID",
"tier": 0,
"domain": "id.chitty.cc",
"repo": "CHITTYFOUNDATION/chittyid",
"status": "live",
"endpoints": {
"health": "/health",
"api": "/api/v1",
"mcp": "/mcp"
},
"dependencies": []
}
Use with other skills:
/health {service} - Check if registered service is running/deploy {service} - Deploy registered service