Research in docs/research flagged missing tooling for the project's actual stack: Symfony backend work and Microsoft Graph calendar sync had no matching local skill. Searched skills.sh and installed project-level: - dev-toolings/superpowers-symfony (11 of 44 skills, matching what stack.md/config-secrets.md already decided on: config/secrets vault, bootstrap check, PHPUnit TDD + functional tests + mocking, controller cleanup, quality checks, DI/autowiring, Cache component, Doctrine migrations). Skipped the API Platform, Messenger/CQRS, hexagonal- architecture, Twig-component, and Pest skills — none of those are part of the decided stack (plain MVC JSON API, no API Platform, TS frontend not Twig, PHPUnit not Pest). - merill/msgraph (offline-indexed Graph API search, no network calls) for the Outlook/Exchange calendar sync decided in stack.md. No CalDAV/Nextcloud skill was installed: every candidate on skills.sh is either a personal-calendar CLI wrapper (vdirsyncer+khal) or gated behind a third-party SaaS account (Membrane) — neither fits writing a PHP backend integration against sabre/dav, which the research doc already speccs out directly. skills-lock.json is tracked; .claude/skills/ payloads are gitignored (msgraph alone is 112MB of multi-platform binaries + SQLite indexes) and restored per-clone via `npx skills experimental_install -y`. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Tu1c13iVNdj1iWL633yazG
60 lines
1008 B
Plaintext
60 lines
1008 B
Plaintext
# ---> Symfony
|
|
# Cache and logs (Symfony2)
|
|
/app/cache/*
|
|
/app/logs/*
|
|
!app/cache/.gitkeep
|
|
!app/logs/.gitkeep
|
|
|
|
# Email spool folder
|
|
/app/spool/*
|
|
|
|
# Cache, session files and logs (Symfony3)
|
|
/var/cache/*
|
|
/var/logs/*
|
|
/var/sessions/*
|
|
!var/cache/.gitkeep
|
|
!var/logs/.gitkeep
|
|
!var/sessions/.gitkeep
|
|
|
|
# Logs (Symfony4)
|
|
/var/log/*
|
|
!var/log/.gitkeep
|
|
|
|
# Parameters
|
|
/app/config/parameters.yml
|
|
/app/config/parameters.ini
|
|
|
|
# Managed by Composer
|
|
/app/bootstrap.php.cache
|
|
/var/bootstrap.php.cache
|
|
/bin/*
|
|
!bin/console
|
|
!bin/symfony_requirements
|
|
/vendor/
|
|
|
|
# Assets and user uploads
|
|
/web/bundles/
|
|
/web/uploads/
|
|
|
|
# PHPUnit
|
|
/app/phpunit.xml
|
|
/phpunit.xml
|
|
|
|
# Build data
|
|
/build/
|
|
|
|
# Composer PHAR
|
|
/composer.phar
|
|
|
|
# Backup entities generated with doctrine:generate:entities command
|
|
**/Entity/*~
|
|
|
|
# Embedded web-server pid file
|
|
/.web-server-pid
|
|
|
|
# Claude Code skill payloads (restorable via `npx skills experimental_install`
|
|
# from skills-lock.json, which IS tracked) and agent worktree scratch space
|
|
/.claude/skills/
|
|
/.claude/worktrees/
|
|
|