name: control-plane-guide description: Guide for the fort control plane - secure inter-host communication system. Use when adding capabilities to hosts, writing handlers, understanding the GC protocol, or debugging control plane issues. Triggers on questions about fort.host.capabilities, fort.host.needs, the fort CLI, handler scripts, or inter-host calls.
Fort Control Plane Guide
The fort control plane enables secure inter-host communication. Hosts expose capabilities (endpoints) that other hosts call via signed HTTP requests.
Quick Reference
Client (calling a capability):
fort <host> <capability> [request-json] # request-json defaults to '{}'
Examples:
fort drhorrible status # Simple status check
fort joker journal '{"unit": "nginx"}' # Pass JSON for params
Provider (exposing a capability):
fort.host.capabilities.my-capability = {
handler = ./handlers/my-capability; # Script handling requests
needsGC = false; # Enable garbage collection
ttl = 0; # GC time-to-live (seconds)
description = "What this does";
};
Consumer (depending on a capability):
fort.host.needs.my-capability.my-id = {
providers = ["hostname"]; # Host(s) providing this
request = { key = "value"; }; # Request payload
store = "/var/lib/myapp/response"; # Where to store response
restart = ["myapp.service"]; # Services to restart on change
};
Key Files
| Path | Purpose |
|---|---|
common/fort/control-plane.nix |
Nix module: options and config generation |
pkgs/fort/ |
Client CLI (Bash) |
pkgs/fort-provider/ |
Server (Go FastCGI) |
/etc/fort/ |
Runtime config on hosts |
/var/lib/fort/ |
GC handles and state |
Standard Capabilities
All hosts expose these:
| Capability | Returns |
|---|---|
status |
Hostname, uptime, failed units, deploy info |
manifest |
Apps, aspects, roles, exposed services |
needs |
Declared needs (for GC enumeration) |
Authentication & RBAC
- Requests signed with SSH keys (
ssh-keygen -Y sign) - RBAC computed at eval time from cluster topology
- Only hosts declaring
fort.host.needsfor a capability can call it - Config:
/etc/fort/hosts.json,/etc/fort/rbac.json
Detailed Documentation
- capabilities.md - Adding capabilities to hosts
- handlers.md - Writing handler scripts
- gc-protocol.md - Garbage collection system
- troubleshooting.md - Debugging issues
chat Comments (0)
Sign in to join the discussion and leave a comment.
Skill Details
GitHub Stars
0
GitHub Forks
0
Created
Jan 2026
Last Updated
4个月前
tools
tools system admin
Related Skills
Build your own?
Join 12,000+ developers contributing to the Claude ecosystem.
No comments yet. Be the first to share your thoughts!