Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ jobs:

- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
env:
# Read access to the private agentic-vibes/laravel-agent-skills repository.
COMPOSER_AUTH: '{"github-oauth":{"github.com":"${{ secrets.AGENTIC_VIBES_TOKEN }}"}}'

- name: PHP tests
run: composer test
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/composer-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ jobs:
run: composer install --no-progress --prefer-dist --optimize-autoloader
env:
COMPOSER_MEMORY_LIMIT: -1
# Read access to the private agentic-vibes/laravel-agent-skills repository.
COMPOSER_AUTH: '{"github-oauth":{"github.com":"${{ secrets.AGENTIC_VIBES_TOKEN }}"}}'

- name: Create branch name
id: branch-name
Expand All @@ -62,6 +64,8 @@ jobs:
composer update --no-progress --prefer-dist --optimize-autoloader
env:
COMPOSER_MEMORY_LIMIT: -1
# Read access to the private agentic-vibes/laravel-agent-skills repository.
COMPOSER_AUTH: '{"github-oauth":{"github.com":"${{ secrets.AGENTIC_VIBES_TOKEN }}"}}'

- name: Check for changes
id: changes
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/.idea
/.claude
.cursor/*
/vendor
.DS_Store
tests/.DS_Store
Expand Down
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,5 +65,5 @@ Strong success criteria let you loop independently. Weak criteria ("make it work
**These guidelines are working if:** fewer unnecessary changes in diffs, fewer rewrites due to overcomplication, and clarifying questions come before implementation rather than after mistakes.
**Before push changes into repository run `composer build` and fix all errors, never ignore errors!**

- Files in the .claude/ and .cursor/ directories are not tracked by Git (they are likely listed in .gitignore). You only need to commit changes in the skills/ directory.
- Files in the .claude/ directory are not tracked by Git (they are likely listed in .gitignore). You only need to commit changes in the skills/ directory.

14 changes: 10 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
}
],
"scripts": {
"build": "vendor/bin/cursor-rules install --force --editor=claude && composer fix && composer rector && composer check && composer check-unused-sniffs && composer phpstan && composer test && git gone",
"build": "vendor/bin/agent-skills install --force && composer fix && composer rector && composer check && composer check-unused-sniffs && composer phpstan && composer test && git gone",
"phpstan": "vendor/bin/phpstan analyse src/ --level=max --memory-limit=1G",
"rector": "rector process src/ tests/ --config=vendor/pekral/rector-rules/rector.php --dry-run",
"check": "vendor/bin/phpcs --standard=ruleset.xml Examples/ src/ tests/",
Expand All @@ -60,7 +60,7 @@
"illuminate/collections": "^13.17.0",
"phpunit/phpunit": "^13.2.1",
"mockery/mockery": "^1.6.12",
"pekral/cursor-rules": "dev-master",
"agentic-vibes/laravel-agent-skills": "dev-master",
"pekral/phpstan-rules": "dev-master",
"pekral/rector-rules": "dev-master"
},
Expand All @@ -80,7 +80,13 @@
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"pekral/cursor-rules": true
"agentic-vibes/laravel-agent-skills": true
}
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/agentic-vibes/laravel-agent-skills.git"
}
]
}
Loading