https://github.com/peterfox/agent-skills
https://github.com/peterfox/agent-skills
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/peterfox/agent-skills
- Owner: peterfox
- License: mit
- Created: 2026-02-22T16:14:26.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2026-03-31T12:04:27.000Z (3 months ago)
- Last Synced: 2026-03-31T14:17:03.444Z (3 months ago)
- Language: Shell
- Size: 249 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Agent Skills
A collection of Claude Code skills for PHP development workflows.
## Available Skills
| Skill | Description |
|-------|-------------|
| [composer-upgrade](composer-upgrade/) | Upgrading PHP projects with Composer — `outdated`, `why-not`, `bump` |
| [packagist](packagist/) | Searching and looking up PHP packages on Packagist via the API |
| [php-type-safety](php-type-safety/) | PHP type safety using webmozarts/assert and PHPDoc shapes for PHPStan/Psalm |
| [phpstan-developer](phpstan-developer/) | Building PHPStan rules, collectors, and type extensions |
| [rector-developer](rector-developer/) | Building Rector PHP rules for AST-based code transformations |
| [serpapi](serpapi/) | Searching Google, Google Shopping, Google Jobs, eBay, and Amazon via SerpApi |
| [slidewire-developer](slidewire-developer/) | Building and refining SlideWire presentations in Laravel/Livewire |
## Installing Skills
### Via npx (recommended)
Install all skills from this repo directly into Claude Code:
```bash
npx skills add peterfox/agent-skills
```
Install a single skill by name:
```bash
npx skills add peterfox/agent-skills --skill composer-upgrade
```
### From a release
Download the `.skill` file for the skill you want from the [releases page](https://github.com/peterfox/agent-skills/releases), then install it:
```bash
claude skill install composer-upgrade.skill
```
## Building Locally
Clone the repo and run the packaging script to generate `.skill` files:
```bash
git clone https://github.com/peterfox/agent-skills.git
cd agent-skills
./package-all.sh
```
This requires the [skill-creator](https://github.com/anthropics/claude-code) skill to be installed locally.
## License
[MIT](LICENSE)