Skip to main content
ClaudeWave
Skill659 estrellas del repoactualizado yesterday

claude-smart

claude-smart enables Codex users to run claude-smart plugin commands through shell scripts, since Codex lacks native slash command support. Use this skill when users request claude-smart operations like show, learn, restart, dashboard, or clear-all, mapping each request to its corresponding bash script in the reflexio plugin directory.

Instalar en Claude Code
Copiar
git clone --depth 1 https://github.com/ReflexioAI/claude-smart /tmp/claude-smart && cp -r /tmp/claude-smart/plugin/skills/claude-smart ~/.claude/skills/claude-smart
Después abre una sesión nueva de Claude Code; el skill carga automáticamente.

SKILL.md

# claude-smart Commands In Codex

Codex does not currently support plugin-provided slash commands. When the user
asks for a claude-smart command, run the equivalent shell command through the
active plugin root. This skill is Codex-specific; under Claude Code the native
`/claude-smart:*` slash commands already exist, so do not fall back to the
shell commands there.

## Command Map

- Dashboard: `bash ~/.reflexio/plugin-root/scripts/dashboard-open.sh`
- Show learned state: `bash ~/.reflexio/plugin-root/scripts/cli.sh show`
- Learn from the latest turn: `bash ~/.reflexio/plugin-root/scripts/cli.sh learn`
- Learn with a note: `bash ~/.reflexio/plugin-root/scripts/cli.sh learn --note "<note>"`
- Restart backend/dashboard: `bash ~/.reflexio/plugin-root/scripts/cli.sh restart`
- Clear all learned state: `bash ~/.reflexio/plugin-root/scripts/cli.sh clear-all --yes`

## Behavior

1. Treat slash-like prompts such as `/claude-smart:show` as requests to run the
   matching shell command above.
2. For `learn`, preserve any user-provided note exactly as the note text.
3. For `clear-all`, require explicit confirmation before running it because it
   deletes all reflexio interactions, preferences, and skills.
4. If `~/.reflexio/plugin-root` is missing or broken, tell the user to restart
   Codex after installing claude-smart, then rerun the command.
5. After running a command, summarize the important output concisely.
agent-browserSkill

Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to "open a website", "fill out a form", "click a button", "take a screenshot", "scrape data from a page", "test this web app", "login to a site", "automate browser actions", or any task requiring programmatic web interaction.

fastapiSkill

FastAPI best practices and conventions. Use when working with FastAPI APIs and Pydantic models for them. Keeps FastAPI code clean and up to date with the latest features and patterns, updated with new versions. Write new code or refactor and update old code.

prdSkill

Generate a Product Requirements Document (PRD) for a new feature. Use when planning a feature, starting a new project, or when asked to create a PRD. Triggers on: create a prd, write prd for, plan this feature, requirements for, spec out.

ralphSkill

Convert PRDs to prd.json format for the Ralph autonomous agent system. Use when you have an existing PRD and need to convert it to Ralph's JSON format. Triggers on: convert this prd, turn this into ralph format, create prd.json from this, ralph json.

sync-agent-instructionsSkill

Sync AI coding tool instruction files (CLAUDE.md, GEMINI.md, AGENTS.md) so they stay aligned. Detects which file changed and copies it to the others. Use when syncing md files, syncing instructions, updating GEMINI.md, or updating AGENTS.md.

update-public-docsSkill

Update public API reference docs to match Python source code. Compares client.py, schema files, and config models against MDX docs and fixes any gaps. Triggers on: update docs, sync docs, update public docs, update api reference, refresh documentation.

commitSkill

Git commit workflow with precommit hook handling, lint/type checking, README updates, and API reference updates. Use when the user wants to commit changes. Handles precommit hooks that modify files (formatting, linting) by re-staging and retrying. Runs ruff lint and pyright type checks on staged Python files, and Biome lint and tsc type checks on staged TS/JS files, fixing all errors. Fixes failing unit tests automatically before committing. Updates README code maps if needed. Updates API reference docs when client.py or service_schemas.py changed. Does not push.

create-prSkill

Create high-quality pull requests via gh pr create. Use when the user wants to create a PR, submit a PR, open a pull request, submit for review, or push changes for review. Triggers on: create a pr, create-pr, submit a pr, open a pull request, submit for review, make a pr, gh pr create.