{"id":50293526,"url":"https://github.com/openmule/mulerouter-skills","last_synced_at":"2026-05-28T07:07:12.445Z","repository":{"id":331238210,"uuid":"1125734403","full_name":"openmule/mulerouter-skills","owner":"openmule","description":"Agent Skills For MuleRouter and MuleRun API","archived":false,"fork":false,"pushed_at":"2026-03-24T12:42:55.000Z","size":101,"stargazers_count":12,"open_issues_count":0,"forks_count":2,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-25T13:20:53.981Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/openmule.png","metadata":{"files":{"readme":"README.md","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-31T08:57:13.000Z","updated_at":"2026-03-24T12:43:00.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/openmule/mulerouter-skills","commit_stats":null,"previous_names":["openmule/mulerouter-skills"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/openmule/mulerouter-skills","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openmule%2Fmulerouter-skills","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openmule%2Fmulerouter-skills/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openmule%2Fmulerouter-skills/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openmule%2Fmulerouter-skills/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/openmule","download_url":"https://codeload.github.com/openmule/mulerouter-skills/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openmule%2Fmulerouter-skills/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33597957,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-28T02:00:06.440Z","response_time":99,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":[],"created_at":"2026-05-28T07:06:58.268Z","updated_at":"2026-05-28T07:07:12.416Z","avatar_url":"https://github.com/openmule.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MuleRouter Agent Skill\n\nAgent Skill for calling MuleRouter / MuleRun multimodal APIs to generate images and videos.\n\n## Features\n\n- **Multiple Sites**: Supports both [MuleRouter](https://mulerouter.ai) and [MuleRun](https://mulerun.com) APIs\n- **Various Models**: Wan2.6 series (T2V, I2V, T2I, Image), Nano Banana Pro and more\n- **Easy Configuration**: Environment variables or .env file\n- **Async Task Handling**: Automatic polling for long-running tasks\n- **AI-Friendly**: Clear parameter documentation via `--list-params`\n\n## Installation\n\n### Install By Claude Code Plugin\n\n#### Install via CLI\n\n```bash\nclaude plugin marketplace add openmule/mulerouter-skills\nclaude plugin install mulerouter-skills\n```\n\n#### Install via Claude Code\n\nIn a Claude Code session:\n\n```bash\n/plugin marketplace add openmule/mulerouter-skills\n/plugin install mulerouter-skills\n```\n\nAfter installation, **RESTART Claude Code** to load the new skill.\n\n## Configuration\n\n### Required Environment Variables\n\n| Variable | Description |\n|----------|-------------|\n| `MULEROUTER_API_KEY` | API key for authentication |\n\n### API Endpoint Configuration (one required)\n\n| Variable | Description | Priority |\n|----------|-------------|----------|\n| `MULEROUTER_BASE_URL` | Custom API base URL (e.g., `https://api.mulerouter.ai`) | Higher |\n| `MULEROUTER_SITE` | API site: `mulerouter` or `mulerun` | Lower |\n\n**Note:** `MULEROUTER_BASE_URL` takes priority over `MULEROUTER_SITE`. If both are set, `MULEROUTER_BASE_URL` is used.\n\nGet your API key on the [MuleRouter website](https://www.mulerouter.ai/app/api-keys?utm_source=github_claude_plugin)\n\n### Option 1: Environment Variables (with custom base URL)\n\n```bash\nexport MULEROUTER_BASE_URL=\"https://api.mulerouter.ai\"\nexport MULEROUTER_API_KEY=\"your-api-key\"\n```\n\n### Option 2: Environment Variables (with site)\n\n```bash\nexport MULEROUTER_SITE=\"mulerouter\"      # or \"mulerun\"\nexport MULEROUTER_API_KEY=\"your-api-key\"\n```\n\n### Option 3: .env File\n\nCreate a `.env` file in your skill directory:\n\n```env\n# Option 1: Use custom base URL (takes priority)\nMULEROUTER_BASE_URL=https://api.mulerouter.ai\nMULEROUTER_API_KEY=your-api-key-here\n\n# Option 2: Use site (if BASE_URL not set)\n# MULEROUTER_SITE=mulerun\n# MULEROUTER_API_KEY=your-api-key-here\n```\n\n**Note:** The tool only reads `MULEROUTER_*` variables from `.env`. Other variables in the file are ignored.\n\n### Verify Configuration\n\n```bash\n# Check environment variables\necho \"MULEROUTER_BASE_URL: $MULEROUTER_BASE_URL\"\necho \"MULEROUTER_SITE: $MULEROUTER_SITE\"\necho \"MULEROUTER_API_KEY: ${MULEROUTER_API_KEY:+[SET]}\"\n\n# Check for .env file\nls -la .env 2\u003e/dev/null || echo \"No .env in current directory\"\n```\n\n## Quick Start\n\nLet Claude Code run `/mulerouter-skills:mulerouter-skills` to use the skill.\n\nOr just ask Claude to use MuleRouter to generate some images or videos.\n\n## Project Structure\n\n```\nskills/mulerouter/\n├── SKILL.md              # Agent skill entry point\n├── scripts/              # Utility scripts\n│   └── list_models.py    # Model listing utility\n├── models/               # Model endpoints (executable)\n├── core/                 # Core infrastructure\n│   ├── config.py         # Configuration management\n│   ├── client.py         # HTTP client\n│   ├── registry.py       # Model registry\n│   └── task.py           # Task polling\n├── references/           # Documentation\n│   ├── REFERENCE.md      # API reference\n│   └── MODELS.md         # Model specifications\n└── tests/                # Unit tests\n```\n\n## CLI Options\n\nAll model scripts support:\n\n| Option | Description |\n|--------|-------------|\n| `--api-key KEY` | Override API key |\n| `--base-url URL` | Override base URL (takes priority over --site) |\n| `--site SITE` | Override site (mulerouter/mulerun) |\n| `--json` | Output as JSON |\n| `--list-params` | Show parameters and exit |\n| `--no-wait` | Don't wait for task completion |\n| `--quiet` | Suppress progress output |\n\n## Development\n\n### Format and Lint\n\n```bash\nuv run ruff format .\nuv run ruff check --fix .\n```\n\n### Run Tests\n\n```bash\nuv run pytest\n```\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenmule%2Fmulerouter-skills","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopenmule%2Fmulerouter-skills","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenmule%2Fmulerouter-skills/lists"}