Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/symfony/ai --skill docs-check명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Investigate an error or behavior across Monolog log files when there is no single profile to read, or when tracking something over time or across requests. Use for "when did this start", "how often", or following one request/user through the logs. For a single known request that still has a profile, prefer profiler debugging.
Diagnose a Symfony request that failed, errored (5xx), or was slow, using the profiler. Use when a specific request misbehaved and the app has the profiler enabled (usually dev). Not for cross-request trends over time (use log investigation) or DI wiring bugs (use service inspection).
First step ONLY when a Symfony request misbehaved and you do not yet know whether the answer is in the profiler, the logs, or the container. One call, then it hands off to the right skill. Skip it entirely and go straight to that skill if you already know the profile token, the log channel or query, or that it is a DI wiring bug.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | docs-check |
| description | Check Documentation for Outdated Code References |
Scan RST and Markdown documentation files in this repository for code references that no longer match the actual codebase. Report findings grouped by file with actionable details.
:class: roles (e.g., :class:\Symfony\AI\Platform\Platform``):method: roles (e.g., :method:\Symfony\AI\Platform\PlatformInterface::invoke``)use statements in PHP code blocksFor each reference, verify the class/interface/method actually exists at that namespace path by searching src/.
composer require commands in code blockscomposer.json within the repositoryconfig/packages/ai.yaml patterns)Configuration.php or *Extension.php files)#[AsTool], #[AsAgent], #[AsMemory], and similar attribute referencesexamples/rag/in-memory.php)Scan these locations for documentation files:
docs/**/*.rst - Main Sphinx documentationREADME.md - Root repository READMECONTRIBUTING.md - Contributing guidesrc/*/README.md - Component READMEs (platform, agent, store, chat, mate, ai-bundle, mcp-bundle)src/*/src/Bridge/*/README.md - Bridge READMEs (e.g. src/platform/src/Bridge/HuggingFace/README.md, src/store/src/Bridge/Qdrant/README.md, src/agent/src/Bridge/Tavily/README.md, src/chat/src/Bridge/Doctrine/README.md)src/mate/INSTRUCTIONS.md and src/mate/src/Bridge/*/INSTRUCTIONS.md - Mate extension instructionsexamples/README.md and examples/*/README.md - Example-suite READMEsdemo/README.md - Demo application READMEExplicitly exclude the following from scans:
CHANGELOG.md and UPGRADE.md files — these intentionally document historical state (old class names, removed APIs, before/after diffs) so references that no longer exist in the code are expected, not bugsvendor/, node_modules/, .git/, .symfony-docs/, or **/cache/fixtures/** and **/tests/**/Fixtures/** (test data, not documentation).github/** templates and .claude/** (harness configuration, not project docs)CLAUDE.md, AGENTS.md, AGENT_INSTRUCTIONS.md (assistant instructions, not user-facing docs)ai.symfony.com/public/** (generated artifacts)Group findings by documentation file. For each issue found, report:
If no issues are found in a file, skip it from the report.
At the end, provide a summary count: X issues found across Y files (Z files checked).
If any issues are found, proceed with the following steps:
src/vendor/bin/php-cs-fixer fix if any PHP files were modifiedmain named docs/fix-outdated-referencesmain using the repository's PR template, filling in the table with Docs?: yes and describing the fixed references in the body