Anygen shared
AnyGen CLI - AI-powered content generation platform
npx -y skills add AnyGenIO/anygen-cli --skill anygen-sharedAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 5 stars5 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
anygen CLI: Shared patterns for authentication, global flags, and output formatting.
SKILL.md
1.6 KB, 322 tokens by cl100k_base, as published. Nobody here has run it
anygen — Shared Reference
Authentication
# Web login (recommended for agent usage)
anygen auth login --no-wait
# Direct API key (no browser needed)
anygen auth login --api-key sk-xxx
# Environment variable
export ANYGEN_API_KEY=sk-xxx
CLI Syntax
anygen <resource> <method> [flags]
Method Flags
| Flag | Description |
|---|---|
--params '<json>' | URL/path parameters |
--data '<json>' | Request body |
--dry-run | Show the request without sending it |
--wait | Re-poll until terminal state |
--timeout <ms> | Polling timeout in milliseconds |
Discovering Commands
# Browse all resources and methods
anygen --help
anygen task --help
# Inspect a method's required params, types, and defaults
anygen schema task.create
anygen schema task.message.send
Use anygen schema output to build your --params and --data flags.
Security Rules
- Never output API keys or auth tokens directly.
- Always confirm with user before uploading files or creating tasks.
- Never upload or read any file without explicit user consent.
- Use natural language instead of exposing task_id, file_token, or CLI syntax to the user.
- Always return links using Markdown format:
[text](url).
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.