{"id":14068004,"url":"https://github.com/yonicd/slackteams","last_synced_at":"2025-09-23T06:30:55.746Z","repository":{"id":37005078,"uuid":"227741070","full_name":"yonicd/slackteams","owner":"yonicd","description":"Manage and Interact with multiple Slack teams in R","archived":false,"fork":false,"pushed_at":"2023-03-11T16:35:39.000Z","size":588,"stargazers_count":21,"open_issues_count":0,"forks_count":3,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-01-03T10:51:32.996Z","etag":null,"topics":["r","slack"],"latest_commit_sha":null,"homepage":"https://yonicd.github.io/slackteams/","language":"R","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yonicd.png","metadata":{"files":{"readme":"README.Rmd","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-12-13T02:44:20.000Z","updated_at":"2024-02-03T16:58:32.000Z","dependencies_parsed_at":"2024-08-13T07:13:45.613Z","dependency_job_id":"90a5efb5-ee12-4792-b658-2e6de3e6a70e","html_url":"https://github.com/yonicd/slackteams","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yonicd%2Fslackteams","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yonicd%2Fslackteams/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yonicd%2Fslackteams/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yonicd%2Fslackteams/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yonicd","download_url":"https://codeload.github.com/yonicd/slackteams/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":233934279,"owners_count":18753572,"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":["r","slack"],"created_at":"2024-08-13T07:05:53.517Z","updated_at":"2025-09-23T06:30:55.333Z","avatar_url":"https://github.com/yonicd.png","language":"R","funding_links":[],"categories":["R"],"sub_categories":[],"readme":"---\noutput: github_document\n---\n\n\u003c!-- README.md is generated from README.Rmd. Please edit that file --\u003e\n\n```{r, include = FALSE}\nknitr::opts_chunk$set(\n  collapse = TRUE,\n  eval = FALSE,\n  comment = \"#\u003e\",\n  fig.path = \"man/figures/README-\",\n  out.width = \"100%\"\n)\n```\n\n# slackteams\n\n\u003c!-- badges: start --\u003e\n[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental)\n[![Covrpage Summary](https://img.shields.io/badge/covrpage-Last_Build_2023_03_11-brightgreen.svg)](https://tinyurl.com/qq3vz59)\n[![R-CMD-check](https://github.com/yonicd/slackteams/actions/workflows/r-cmd-check.yml/badge.svg)](https://github.com/yonicd/slackteams/actions/workflows/r-cmd-check.yml)\n[![Codecov test coverage](https://codecov.io/gh/yonicd/slackteams/branch/master/graph/badge.svg)](https://codecov.io/gh/yonicd/slackteams?branch=master)\n\u003c!-- badges: end --\u003e\n\n`slackteams` is a part of `slackverse`\n\n```{r,echo = FALSE, eval = TRUE}\npkgs \u003c- sprintf('slack%s',c('calls','teams','posts','blocks','threads','reprex'))\n\nbadges \u003c- sprintf('%s\u003cbr\u003e[![](https://github.com/yonicd/%s/actions/workflows/r-cmd-check.yml/badge.svg)](https://github.com/yonicd/%s)',pkgs,pkgs,pkgs)\n\nnames(badges) \u003c- pkgs\n\n```\n\n||||\n|:-:|:-:|:-:|\n||`r badges[pkgs[1]]`||\n|`r badges[pkgs[5]]`|`r badges[pkgs[2]]`|`r badges[pkgs[3]]`|\n|||`r badges[pkgs[4]]`|\n|||`r badges[pkgs[6]]`|\n\n`slackteams` is an `R` package that allows the user to manage multiple Slack teams during a session. \n\n## Installation\n\n``` r\nremotes::install_github(\"yonicd/slackteams\")\n```\n\n## Tokens\n\nCreating a token is simple using \n\n```r\nslackteams::add_team_interactive()\n```\n\nThis will generate a minimal Slack api token for you to interact with the Slack. For more information on the different permissions the token can take refer to the [Managing Tokens Vignette](articles/scopes.html)\n\nThe token team will be created, loaded and activated for you, so you can start working right away. To store this token for future sessions refer to [Storing A Token](articles/manage.html#storing-a-token).\n\n## Basic Usage\n\n```r\nlibrary(slackteams)\n```\n\n### Load the teams\n\n```r\nslackteams::load_teams()\n# The following teams are loaded:\n#   slackr, R4ds\n```\n\n\n### Activate a Team\n\n```r\nslackteams::activate_team('R4ds')\n# slack environment variables are set to 'R4ds' supplied definitions\n```\n\n### Query Active Team Channels\n\n```r\nslackteams::get_team_channels()\n```\n\n### Query Active Team Members\n\n```r\nslackteams::get_team_users()\n```\n\n### Activate Another Team\n\n```r\nslackteams::activate_team('slackr')\n# slack environment variables are set to 'slackr' supplied definitions\n```\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyonicd%2Fslackteams","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyonicd%2Fslackteams","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyonicd%2Fslackteams/lists"}