docs(skill): recommend uv tool install, simplify usage, v0.1.5#257
Merged
Conversation
Persistent install via `uv tool install authsome` is faster for repeated agent invocations and reduces hallucinations by letting agents type `authsome run curl` instead of `uvx authsome@latest run curl`. Closes #251 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Entire-Checkpoint: 4a92f2dc3ff1
…ttern Remove the AUTHSOME_PROXY_MODE branch check — agents should always use `authsome run -- <command>` without checking environment first. Add concrete provider examples (GitHub REST, OpenAI, Linear GraphQL) so agents have copy-paste patterns to follow directly. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Entire-Checkpoint: 81fe81201c45
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Entire-Checkpoint: 2f061ec5fdb8
Agents now see the authsome run -- pattern immediately. Installation and login are referenced inline only when needed (command not found / unauthenticated), removing the mandatory step-by-step preamble. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Entire-Checkpoint: befd07322562
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Entire-Checkpoint: e9db86c7ba7a
…o body - Fix gh issue repo: manojbajaj95 → agentrhq (also issues URL) - Move CRITICAL RULE out of description into skill body - Description is now focused on triggering: names specific providers, fires even when user hasn't mentioned auth - Login section: add authsome list before login so agents discover valid provider names Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Entire-Checkpoint: a5a78d400a38
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Entire-Checkpoint: a5f1485552cd
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Entire-Checkpoint: e5daa4c86e5a
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.
Closes #251
Summary
alias authsome="uvx authsome@latest"withuv tool install authsome— persistent install meansauthsomeis available directly without reinstalling on every invocationauthsome run -- <command>as the single pattern; add proxy explanation so agents understand why it's required; concrete GitHub and OpenAI examplesauthsome listshown before login so agents discover valid provider namesmanojbajaj95→agentrhqin issue reportingTest plan
uv tool install authsomein a fresh environment, confirmauthsome --versionworksauthsome list,authsome login <provider>,authsome run -- curl https://api.github.com/userall work without alias🤖 Generated with Claude Code