{"id":13820306,"url":"https://github.com/anonrig/slack-manager","last_synced_at":"2025-08-20T03:31:32.352Z","repository":{"id":68448861,"uuid":"48659621","full_name":"anonrig/slack-manager","owner":"anonrig","description":"Agile Development tool for Slack. Basically, \"Standup Meetings in Slack\".","archived":false,"fork":false,"pushed_at":"2017-10-29T19:31:50.000Z","size":30,"stargazers_count":219,"open_issues_count":3,"forks_count":24,"subscribers_count":9,"default_branch":"master","last_synced_at":"2024-12-09T21:34:20.789Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/anonrig.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2015-12-27T20:36:28.000Z","updated_at":"2023-05-09T19:43:42.000Z","dependencies_parsed_at":"2023-02-23T17:30:22.053Z","dependency_job_id":null,"html_url":"https://github.com/anonrig/slack-manager","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anonrig%2Fslack-manager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anonrig%2Fslack-manager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anonrig%2Fslack-manager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anonrig%2Fslack-manager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/anonrig","download_url":"https://codeload.github.com/anonrig/slack-manager/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":230388131,"owners_count":18217755,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-04T08:01:01.208Z","updated_at":"2024-12-19T06:09:48.395Z","avatar_url":"https://github.com/anonrig.png","language":"JavaScript","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"readme":"# Agile Development tool for Slack.\nBasically, \"**Standup meetings for Slack**\"\n\nSlack Manager allows teams to monitor employees on a daily basis. You can start a meeting by inviting your bot to your current channel and just write \"start meeting\".\n\nAdvantages of Slack Manager from other services:\n  - Free and easy to use.\n  - Configurable mail settings.\n  - Configurable questions.\n  - Works with multiple channels.\n\n![alt text](http://new.tinygrab.com/783f33d7b18d7bcd72f1de9785bcbf86e10c3eb82a.png \"Slack-Manager\")\n\n### Create your Slack bot.\n\n  - First make a bot integration inside of your Slack channel. Go here: `https://my.slack.com/services/new/bot`\n  - Enter a name for your bot. Make it something fun and friendly, but avoid a single task specific name. Bots can do lots! Let's not pigeonhole them.\n  - When you click \"Add Bot Integration\", you are taken to a page where you can add additional details about your bot, like an avatar, as well as customize its name \u0026 description.\n\nCopy the API token that Slack gives you. You'll need it in the next step.\n\n### Installation\n\nClone the repository by:\n```\ngit clone https://github.com/anonrig/slack-manager\n```\n\nInstall from NPM\n```\nnpm install slack-manager --save\n```\n\nCreate your settings file.\n\n```\ntouch config/production.json\n```\n\nMailer service uses nodemailer's transport methods. Therefore, for better understanding please read nodemailer's [available transports ](https://github.com/andris9/Nodemailer#available-transports).\n\nFor example for Gmail settings: change your settings file by:\n```\n{\n    \"token\": \"YOUR SLACK TOKEN HERE\",\n    \"mailer\": {\n        \"service\": \"Gmail\",\n        \"email\": \"email@address.com\",\n        \"pass\": \"mySuperFancyPassword\"\n    }\n}\n```\n\nConfigure your questions\n\nOpen default.json and add a questions field shown below.\n\nslack-manager lets users to ask different questions to different channels. If you prefer a single question list\nthen you will only need the default field of the questions object. If you want to ask different questions to different channels\nthen you will need to add additional fields to the questions object. Fields of the questions object must be the names of the\ncorresponding channels.\n\nNote: If no questions that has the same name as the channel found then the default list will be asked.\n\n```\n\"questions\": {\n    \"default\": [\n        \"What did you do yesterday?\",\n        \"What are you going to do today?\",\n        \"Did you encounter any problems?\"\n    ],\n    \"CHANNEL-NAME\": [\n        \"How do you feel?\"\n    ],\n    \"ANOTHER-CHANNEL-NAME\": [\n        \"Another question?\",\n        \"Perhaps more?\"\n    ]\n}\n```\n\n## Usage\n\n### Install dependencies\n```\nnpm install\n```\n\n### Start your bot.\n\n```\nnpm start\n```\n\n### Commands\n\n- ``` start meeting ```\n\n    Starts meeting. To be able to start meeting with this command your bot should be invited to the channel.\n\n- ``` skip ```\n\n    Skips the current user's turn. Asks/Returns to the skipped users again at the end of the meeting. Can be skipped more than once.\n\n- ``` dismiss ```\n\n    Dismisses the current user, in other words kicks the current user out of the meeting. Useful in case of an absence.\n\n- ``` quit ```\n\n    Ends the meeting. Meeting can be restarted by typing ``` start meeting ``` again.\n\n### Tech\n\nSlack-Manager uses a number of open source projects to work properly:\n\n* [Botkit](https://github.com/howdyai/botkit) - Botkit - Building Blocks for Building Bots\n* [Node-mailer](https://github.com/andris9/Nodemailer) - Send e-mails with Node.JS – easy as cake! E-mail made in Estonia.\n* [Lodash](https://github.com/lodash/lodash) - A JavaScript utility library delivering consistency, modularity, performance, \u0026 extras.\n* [Async](https://github.com/caolan/async) - Async utilities for node and the browser.\n* [Nconf](https://github.com/indexzero/nconf) - Hierarchical node.js configuration with files, environment variables, command-line arguments, and atomic object merging.\n\n### Development\n\nWant to contribute? Great! Feel free to submit bugs, and open pull requests.\n\nLicense\n----\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanonrig%2Fslack-manager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fanonrig%2Fslack-manager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanonrig%2Fslack-manager/lists"}