Refresh Other Local Environment
Follow these steps to refresh the local environment of other agents, ensuring that their agent skills and plugins are fully up-to-date.
Other agents rely on npx skills. Updates should prioritize the global level; if skills are installed at the project level, omit the --global flag.
Replace <AGENT_NAME> with the actual agent name, which can be found here.
- Check for New Skills: Check all available skills in the repository, run:
npx -y skills add firebase/agent-skills --list - Check the installed skills: Check installed skills in both project and global levels, run:
# Check project-level skills npx -y skills list --agent <AGENT_NAME> # Check global-level skills npx -y skills list --agent <AGENT_NAME> --global - Update Installed Skills: Run the following to update all currently installed skills to their latest versions:
# Refresh project-level skills npx -y skills update --agent <AGENT_NAME> --yes # Refresh global-level skills npx -y skills update --agent <AGENT_NAME> --global --yes - Add New Skills (If Any): If step 1 and 2 revealed new skills, install them:
# Add project-level skills npx -y skills add firebase/agent-skills --agent <AGENT_NAME> --skill "<NEW_SKILL_NAME>" --yes # Add global-level skills npx -y skills add firebase/agent-skills --agent <AGENT_NAME> --skill "<NEW_SKILL_NAME>" --global --yes