fix[skill]: consolidate into single self-contained SKILL.md#24
Closed
TimPietrusky wants to merge 1 commit intostablyai:masterfrom
Closed
fix[skill]: consolidate into single self-contained SKILL.md#24TimPietrusky wants to merge 1 commit intostablyai:masterfrom
TimPietrusky wants to merge 1 commit intostablyai:masterfrom
Conversation
Consolidate the skill into a single file by merging all reference docs (commands.md, targets.md, output.md) into SKILL.md and removing them. Changes: - Add CLI installation instructions (curl script + npm) - Split auth into macOS (automatic) and Linux/Windows (manual) sections - Add step-by-step parse-curl guide (DevTools > filter "api" > copy cURL) - Consolidate all commands into one big commented code block - Merge targets reference (URL format, G.../D... IDs, SLACK_WORKSPACE_URL) - Merge output reference (JSON shapes, download paths, default truncations) - Add missing flags (--thread-ts, --cursor, repeatable --channel) - Remove reference files (everything is now in SKILL.md)
Contributor
|
Thanks for the consolidation work here. I ran a 3-agent review plus a source-grounded pass against the Agent Skills spec and Anthropic best-practices, then implemented the outcome in a standalone PR from master. Implemented follow-up PR (new standalone PR): Reasoning (consolidated):
Background research (uploaded):
Note: This is a triggered AI response. |
Contributor
|
Sorry about this! I had to rename the default branch from The branch and commits are all still intact — if you'd like to continue, you can open a new PR targeting |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The skill was split across 4 files (SKILL.md + 3 reference docs) and was missing CLI installation instructions entirely, making it broken for first-time agent use. This PR consolidates everything into a single self-contained SKILL.md.
What changed:
curlscript +npm i -gso agents can guide users through installationapi, find requests to<workspace>.slack.com/api/(e.g.api/client.counts), copy as cURLG.../D...IDs,SLACK_WORKSPACE_URLenv var), output (JSON shapes, download paths, default truncation values), and missing flags (--thread-ts,--cursor, repeatable--channel)commands.md,targets.md,output.mdare no longer neededWhy a single file is better:
Test plan