Use AccessFuel from an agent's visible built-in browser. The skill can answer KPI questions, create audiences and personas, and prepare unscheduled campaign drafts. It uses verified page tools when they are available and can operate the visible AIRA console when you ask it to perform the work. Otherwise it opens a prefilled AIRA chat for you to review and send.
/aira find customers who spent over $500 but haven't bought in 90 days, build a persona, draft a win-back email campaign
The skill never enters credentials, sends or publishes content, schedules campaigns, or deletes data. It reads saved objects back and carries their IDs through audience, persona, and campaign handoffs.
- An AccessFuel account and access to a workspace.
- An agent host with a visible built-in browser and page-reading support.
- Git, for the install commands below.
Browser support varies by host and version. The skill stops safely when the required browser capability is unavailable.
Run these commands inside Claude Code:
/plugin marketplace add AccessFuel/aira-skill
/plugin install accessfuel@accessfuel-skills
Then invoke the namespaced skill:
/accessfuel:aira show my top 10 products by revenue last month
Run /reload-plugins if Claude Code asks you to reload after installation.
From the root of your project:
mkdir -p .claude/skills
git clone https://github.com/AccessFuel/aira-skill.git .claude/skills/airaInvoke it as /aira. The clone remains independently updateable. Teams that
want to pin it in their repository can add the public repository as a Git
submodule at the same path.
mkdir -p ~/.claude/skills
git clone https://github.com/AccessFuel/aira-skill.git ~/.claude/skills/airaPersonal Claude Code skills apply to local projects but do not install into a Claude Cowork or cloud account.
- Open Customize → Plugins → Add marketplace.
- Enter
AccessFuel/aira-skillor the full repository URL. - Install AccessFuel.
Invoke the plugin skill as /accessfuel:aira.
From the repository root where you launch Codex:
mkdir -p .agents/skills
git clone https://github.com/AccessFuel/aira-skill.git .agents/skills/airamkdir -p ~/.agents/skills
git clone https://github.com/AccessFuel/aira-skill.git ~/.agents/skills/airaCodex detects installed skills automatically. If it does not appear, restart
Codex. Type $aira in a prompt to select it explicitly, or let Codex invoke it
when a request clearly names AccessFuel or AIRA.
Run git pull --ff-only inside the installed aira directory. For example:
git -C ~/.agents/skills/aira pull --ff-onlyClaude marketplace installs can be updated from Claude Code with:
/plugin marketplace update accessfuel-skills
SKILL.md— procedure and safety boundaries.references/console-map.md— customer-facing objects and console paths.references/page-tools.md— discovery guidance for planned page tools.references/prompts.md— scoped AIRA hand-off templates.- The public repository also includes Claude plugin metadata and the license.
The installable skill is SKILL.md plus references/. Internal reviews,
implementation proposals, credentials, and unrelated repository metadata are
excluded.
MIT.