Created
April 8, 2025 18:07
-
-
Save reverentgeek/a80f022503811ccbd1fa71dff80682fa to your computer and use it in GitHub Desktop.
Slack Random Fact Generator App Manifest
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"display_information": { | |
"name": "Useless Fact App" | |
}, | |
"features": { | |
"app_home": { | |
"home_tab_enabled": true, | |
"messages_tab_enabled": true, | |
"messages_tab_read_only_enabled": true | |
}, | |
"bot_user": { | |
"display_name": "Useless Fact App", | |
"always_online": false | |
} | |
}, | |
"oauth_config": { | |
"scopes": { | |
"bot": [ | |
"chat:write", | |
"app_mentions:read", | |
"workflow.steps:execute" | |
] | |
} | |
}, | |
"settings": { | |
"event_subscriptions": { | |
"user_events": [ | |
"message.app_home" | |
], | |
"bot_events": [ | |
"app_mention", | |
"workflow_step_execute", | |
"function_executed" | |
] | |
}, | |
"interactivity": { | |
"is_enabled": true | |
}, | |
"org_deploy_enabled": true, | |
"socket_mode_enabled": true, | |
"token_rotation_enabled": false, | |
"hermes_app_type": "remote", | |
"function_runtime": "remote" | |
}, | |
"functions": { | |
"useless_fact_step": { | |
"title": "Useless Fact Custom Step", | |
"description": "Runs useless fact step", | |
"input_parameters": {}, | |
"output_parameters": { | |
"message": { | |
"type": "string", | |
"title": "Fact", | |
"description": "A random useless fact", | |
"is_required": true, | |
"name": "message" | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment