소스 정보
- 저장소
- ComeOnOliver/skillshub
- 최근 소스 활동
- 2026년 3월 23일 17:43
- 감지된 SKILL.md 언어
- 영어
- 스타
- 58
- 포크
- 20
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/ComeOnOliver/skillshub --skill access명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Review product and feature risk before an AI coding agent starts implementation.
Use Xquik for X data and confirmation-gated X actions: tweet search, user lookup, follower export, media download, monitors, webhooks, MCP, and SDK workflows.
Canton Network open-source ecosystem guide covering DAML SDK, Canton runtime, and Splice applications. Use when working with Canton Network, DAML smart contracts, or building decentralized applications.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | access |
| description | Manage Slack channel access control — pairing, allowlist, channel opt-in |
| version | 1.0.0 |
| author | Jeremy Longshore <jeremy@intentsolutions.io> |
| license | MIT |
| user-invocable | true |
| argument-hint | pair <code> | policy <mode> | add <user_id> | remove <user_id> | channel <id> [opts] | status |
| allowed-tools | Read, Write, Edit |
| compatible-with | claude-code |
| tags | ["mcp","access"] |
Manage who can reach your Claude Code session through Slack. Controls DM pairing, user allowlists, and channel opt-in policies via a local access.json state file with strict file permissions.
slack-channel MCP plugin must be installed and configured (run /slack-channel:configure first)~/.claude/channels/slack/ must exist (created by configure)~/.claude/channels/slack/access.json/slack-channel:access pair <code> # Approve a pending pairing
/slack-channel:access policy <pairing|allowlist|disabled> # Set DM policy
/slack-channel:access add <slack_user_id> # Add user to allowlist
/slack-channel:access remove <slack_user_id> # Remove from allowlist
/slack-channel:access channel <channel_id> [--mention] [--allow <user_id,...>] # Opt in a channel
/slack-channel:access channel remove <channel_id> # Remove channel opt-in
/slack-channel:access status # Show current config
~/.claude/channels/slack/access.json
Parse $ARGUMENTS and execute the matching subcommand:
pair <code>access.json<code> (case-insensitive)entry.senderId to allowFromaccess.json with permissions 0o600Approved! User <senderId> can now DM this session.policy <mode>pairing, allowlist, disableddmPolicy in access.jsonpairing: New DMs get a code to approve (default)allowlist: Only pre-approved users can DMdisabled: No DMs acceptedadd <user_id>allowFrom (deduplicate)remove <user_id>allowFromallowFrom listschannel <channel_id> [--mention] [--allow <ids>]--mention: require @mention to trigger (default: false)--allow <id1,id2>: restrict to specific users in that channelchannels[channel_id] in access.jsonchannel remove <channel_id>channels[channel_id]statusaccess.jsonaccess.jsonaccess.jsonaccess.json is corrupt, move it aside and start freshEach subcommand produces a confirmation message:
| Error | Cause | Resolution |
|---|---|---|
access.json not found | Plugin not yet configured | Run /slack-channel:configure to initialize state directory |
| Invalid pairing code | Code expired or mistyped | Show "No pending pairing with that code" and list active codes if any |
| Corrupt JSON | Manual edit or write failure | Move access.json aside, create fresh default, warn user |
| Permission denied | File permissions too restrictive | Check and reset to 0o600 on access.json |
Approve a pairing request:
/slack-channel:access pair ABC123
→ Approved! User U04EXAMPLE can now DM this session.
Switch to allowlist-only mode:
/slack-channel:access policy allowlist
→ DM policy set to "allowlist". Only pre-approved users can message this session.
Opt in a channel with mention requirement:
/slack-channel:access channel C01EXAMPLE --mention
→ Channel C01EXAMPLE opted in (requires @mention to trigger).
/slack-channel:configure