skill-enabler

Enable multiple skill slugs in aeon.yml and create a pull request.

Updated Jun 17, 2026
One-click install
npx skills add https://github.com/aeoncity-demo/myaeon --skill skill-enabler-aeoncity-demo
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: skill-enabler
Source: https://github.com/aeoncity-demo/myaeon/tree/main/skills/skill-enabler
Command: npx skills add https://github.com/aeoncity-demo/myaeon --skill skill-enabler-aeoncity-demo

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires git, gh, and includes scripts (resource) components.

What problem does it solve?

Manually enabling multiple skills in the Aeon agent's configuration can be time-consuming and error-prone. This skill simplifies the process by allowing you to enable multiple skills with a single command.

Core Features & Use Cases

  • Batch Skill Enabling: Flip the enabled: false to enabled: true for multiple skills at once.
  • Validation: Ensures that only valid skill slugs are enabled, avoiding conflicts and missing directories.
  • Commit and PR Automation: Automates the commit and PR creation for the skill changes, reducing manual steps.

Quick Start

Run the skill-enabler with the desired skill slugs, e.g., skill-enabler var=skill-a,skill-b,skill-c.

Frequently Asked Questions about skill-enabler

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I enable multiple skills in an Aeon agent configuration at once?

To enable multiple skills at once, you pass the desired skill slugs to the enabler, which modifies the aeon.yml file by flipping enabled flags to true, then commits the changes and creates a pull request.

Do I need GitHub CLI and git installed to automate Aeon skill enabling?

Yes, you need both git and GitHub CLI installed to automate Aeon skill enabling, because the process commits configuration changes to your repository and creates a pull request using these dependencies.

How does the skill validation process work when updating aeon.yml?

Validation works by checking requested skill slugs against existing directories before updating aeon.yml, ensuring only valid slugs are enabled to avoid configuration conflicts and missing references.

Can I automate pull request creation for Aeon configuration management changes?

Yes, you can automate pull request creation for Aeon configuration changes by using a script that commits the modified aeon.yml file and leverages GitHub CLI to open the PR directly.

What is the best way to batch update enabled flags in aeon.yml?

The best way to batch update enabled flags in aeon.yml is using a dedicated skill enabler that validates the slugs, applies the changes, and automates the git commit and PR workflow in one command.