MCPcopy Index your code
hub / github.com/dgurkaynak/slack-poker-planner

github.com/dgurkaynak/slack-poker-planner @2.1.1

Chat with this repo
repository ↗ · DeepWiki ↗ · release 2.1.1 ↗ · + Follow
75 symbols 202 edges 15 files 24 documented · 32% updated 17mo ago2.1.1 · 2025-02-09★ 24915 open issues
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

Poker Planner for Slack

This project lets you make estimations with planning poker technique (or scrum poker) directly in Slack, without any need of external software. It can be a useful tool for agile remote teams.

Slack App Directory: https://slack.com/apps/A57FFS3QE-poker-planner

Demonstration

Installation & Add to your Slack Team

  • Go to website: https://deniz.co/slack-poker-planner/
  • Click "Add to Slack" button
  • Select the team you want to install Poker Planner from the dropdown top right
  • Click Allow button

Usage

For detailed usage documentation, please visit website.

Self-hosting

If you want to host your own app, follow this steps:

Creating Slack App & Getting Credentials

  • Create a new Slack app from here.
  • Interactivity & Shortcuts
  • Turn on "Interactivity"
  • Set request url: http://my.awesome.project.url/slack/interactivity
  • Slash Commands
  • Create a new command /pp (or any command you want) and set request url as http://my.awesome.project.url/slack/pp-slash-command
  • Make sure that "Escape channels, users, and links sent to your app" option is turned on
  • OAuth & Permissions
  • Add a new OAuth Redirect URL: http://my.awesome.project.url/oauth
  • Required bot permission scopes: commands, chat:write
  • Required user permission scopes: None
  • User ID Translation
  • Turn off "Translate Global IDs"
  • Tokens
  • Client ID, Secret and Verification token can be found on Basic Information page
  • Installation
  • Go to Manage Distribution, click "Add to Slack" and grant permissions

Running via Docker

  • Clone the repo & cd into it
  • Build docker image: docker build -t dgurkaynak/slack-poker-planner .
  • Start container:
docker run -d \
  --restart=unless-stopped \
  -p 3000:3000 \
  -e SLACK_CLIENT_ID=xxx \
  -e SLACK_CLIENT_SECRET=xxx \
  -e SLACK_VERIFICATION_TOKEN=xxx \
  -e SLACK_APP_ID=xxx \
  -e DATA_FOLDER=/data \
  -e ENABLE_JSONL_LOGGING=true \
  -v /host/data/folder/slack-poker-planner:/data \
  --name slack-poker-planner \
  dgurkaynak/slack-poker-planner
  • (optional) If you wanna persist poker sessions, you can provide a Redis server.
docker run -d \
  --restart=unless-stopped \
  -p 3000:3000 \
  -e SLACK_CLIENT_ID=xxx \
  -e SLACK_CLIENT_SECRET=xxx \
  -e SLACK_VERIFICATION_TOKEN=xxx \
  -e SLACK_APP_ID=xxx \
  -e DATA_FOLDER=/data \
  -e ENABLE_JSONL_LOGGING=true \
  -v /host/data/folder/slack-poker-planner:/data \
  -e USE_REDIS=true \
  -e REDIS_URL="redis://X.X.X.X:6379" \
  --name slack-poker-planner \
  dgurkaynak/slack-poker-planner

Check out .env.default file for the complete list of environment variables.

Running Manually

Node.js requirement >= 22.11.0

  • Clone this repo
  • Install dependencies: npm i
  • Build: npm run build
  • Start the app: npm start

Extension points exported contracts — how you extend this code

Core symbols most depended-on inside this repo

Shape

Method 34
Function 24
Class 12
Interface 3
Enum 2

Languages

TypeScript100%

Modules by API surface

src/session/session-controller.ts18 symbols
src/team/team-model.ts12 symbols
src/routes/interactivity.ts9 symbols
src/session/session-model.ts8 symbols
src/lib/logger.ts8 symbols
src/routes/pp-command.ts6 symbols
src/routes/oauth.ts3 symbols
src/app.ts3 symbols
src/lib/sqlite.ts2 symbols
src/lib/redis.ts2 symbols
src/session/isession.ts1 symbols
src/lib/to.ts1 symbols

For agents

$ claude mcp add slack-poker-planner \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page