Slack Manifest for Hermes AI Agent
Hey, discovered an error in the slack manifest for Hermes. Here's the fixed manifest. Just replace "name": "[REPLACE HERE]" on line 3, and line 14 "display_name": "[replace here]".
{
"display_information": {
"name": "Turfy",
"description": "Your Turf Monopoly Hermes agent on Slack",
"background_color": "#1a1a2e"
},
"features": {
"app_home": {
"home_tab_enabled": false,
"messages_tab_enabled": true,
"messages_tab_read_only_enabled": false
},
"bot_user": {
"display_name": "Turfy",
"always_online": true
},
"slash_commands": [
{
"command": "/hermes",
"description": "Talk to Hermes or run a subcommand",
"should_escape": false
},
{
"command": "/start",
"description": "Acknowledge platform start pings without a reply",
"should_escape": false
},
{
"command": "/new",
"description": "Start a new session (fresh session ID + history)",
"should_escape": false
},
{
"command": "/retry",
"description": "Retry the last message (resend to agent)",
"should_escape": false
},
{
"command": "/undo",
"description": "Back up N user turns and re-prompt (default 1)",
"should_escape": false
},
{
"command": "/title",
"description": "Set a title for the current session",
"should_escape": false
},
{
"command": "/branch",
"description": "Branch the current session (explore a different path)",
"should_escape": false
},
{
"command": "/compress",
"description": "Compress conversation context (add 'here [N]' to keep recent N turns)",
"should_escape": false
},
{
"command": "/rollback",
"description": "List or restore filesystem checkpoints",
"should_escape": false
},
{
"command": "/stop",
"description": "Kill all running background processes",
"should_escape": false
},
{
"command": "/approve",
"description": "Approve a pending dangerous command",
"should_escape": false
},
{
"command": "/deny",
"description": "Deny a pending dangerous command",
"should_escape": false
},
{
"command": "/background",
"description": "Run a prompt in the background",
"should_escape": false
},
{
"command": "/agents",
"description": "Show active agents and running tasks",
"should_escape": false
},
{
"command": "/queue",
"description": "Queue a prompt for the next turn (doesn't interrupt)",
"should_escape": false
},
{
"command": "/steer",
"description": "Inject a message after the next tool call without interrupting",
"should_escape": false
},
{
"command": "/goal",
"description": "Set a standing goal Hermes works on across turns until achieved",
"should_escape": false
},
{
"command": "/subgoal",
"description": "Add or manage extra criteria on the active goal",
"should_escape": false
},
{
"command": "/whoami",
"description": "Show your slash command access (admin / user)",
"should_escape": false
},
{
"command": "/profile",
"description": "Show active profile name and home directory",
"should_escape": false
},
{
"command": "/sethome",
"description": "Set this chat as the home channel",
"should_escape": false
},
{
"command": "/resume",
"description": "Resume a previously-named session",
"should_escape": false
},
{
"command": "/sessions",
"description": "Browse and resume previous sessions",
"should_escape": false
},
{
"command": "/model",
"description": "Switch model for this session",
"should_escape": false
},
{
"command": "/codex-runtime",
"description": "Toggle codex app-server runtime for OpenAI/Codex models",
"should_escape": false
},
{
"command": "/personality",
"description": "Set a predefined personality",
"should_escape": false
},
{
"command": "/footer",
"description": "Toggle gateway runtime-metadata footer on final replies",
"should_escape": false
},
{
"command": "/yolo",
"description": "Toggle YOLO mode (skip all dangerous command approvals)",
"should_escape": false
},
{
"command": "/reasoning",
"description": "Manage reasoning effort and display",
"should_escape": false
},
{
"command": "/fast",
"description": "Toggle fast mode - OpenAI Priority Processing / Anthropic Fast Mode (Normal/Fast)",
"should_escape": false
},
{
"command": "/voice",
"description": "Toggle voice mode",
"should_escape": false
},
{
"command": "/memory",
"description": "Review pending memory writes / toggle the approval gate",
"should_escape": false
},
{
"command": "/bundles",
"description": "List skill bundles (aliases /<name> for multiple skills)",
"should_escape": false
},
{
"command": "/suggestions",
"description": "Review suggested automations (accept/dismiss)",
"should_escape": false
},
{
"command": "/blueprint",
"description": "Set up an automation from a blueprint template",
"should_escape": false
},
{
"command": "/curator",
"description": "Background skill maintenance (status, run, pin, archive, list-archived)",
"should_escape": false
},
{
"command": "/kanban",
"description": "Multi-profile collaboration board (tasks, links, comments)",
"should_escape": false
},
{
"command": "/reload-mcp",
"description": "Reload MCP servers from config",
"should_escape": false
},
{
"command": "/reload-skills",
"description": "Re-scan ~/.hermes/skills/ for newly installed or removed skills",
"should_escape": false
},
{
"command": "/commands",
"description": "Browse all commands and skills (paginated)",
"should_escape": false
},
{
"command": "/help",
"description": "Show available commands",
"should_escape": false
},
{
"command": "/restart",
"description": "Gracefully restart the gateway after draining active runs",
"should_escape": false
},
{
"command": "/usage",
"description": "Show token usage and rate limits for the current session",
"should_escape": false
},
{
"command": "/insights",
"description": "Show usage insights and analytics",
"should_escape": false
},
{
"command": "/platform",
"description": "Pause, resume, or list a failing gateway platform",
"should_escape": false
},
{
"command": "/update",
"description": "Update Hermes Agent to the latest version",
"should_escape": false
},
{
"command": "/version",
"description": "Show Hermes Agent version",
"should_escape": false
},
{
"command": "/debug",
"description": "Upload debug report (system info + logs) and get shareable links",
"should_escape": false
}
]
},
"oauth_config": {
"scopes": {
"bot": [
"app_mentions:read",
"channels:history",
"channels:read",
"chat:write",
"commands",
"files:read",
"files:write",
"groups:history",
"groups:read",
"im:history",
"im:read",
"im:write",
"users:read"
]
},
"pkce_enabled": false
},
"settings": {
"event_subscriptions": {
"bot_events": [
"app_mention",
"message.channels",
"message.groups",
]
},
"interactivity": {
"is_enabled": true
},
"org_deploy_enabled": false,
"socket_mode_enabled": true,
"token_rotation_enabled": false,
"is_mcp_enabled": false
}
}
0
0 comments
Ty Shane
3
Slack Manifest for Hermes AI Agent
🦞 AI Villains
skool.com/clawrevops
Learn Principled AI Skills. This is not a course; this is the futuristic way of thinking to survive and thrive the AI revolution. Make Money with AI.
Leaderboard (30-day)
Powered by