control-plane-guide | Skill Performance & Reviews | TopRankSkills

TopRank Skills

Home / Skills / tools / control-plane-guide

control-plane-guide

maintained by gisikw

star 0 account_tree 0 verified_user MIT License
bolt View GitHub

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.needs for a capability can call it
  • Config: /etc/fort/hosts.json, /etc/fort/rbac.json

Detailed Documentation

chat Comments (0)

chat_bubble_outline

No comments yet. Be the first to share your thoughts!

Skill Details

GitHub Stars 0
GitHub Forks 0
Created Jan 2026
Last Updated il y a 4 mois
tools tools system admin

Related Skills

docker-expert
chevron_right
caffeine
chevron_right
telnyx-network
chevron_right
discord-governance
chevron_right
plex

plex

openclaw
star 2.4k
chevron_right

Build your own?

Join 12,000+ developers contributing to the Claude ecosystem.