Project analysis zend laminas
Skill event4u-app/agent-config/src/skills/project-analysis-zend-laminas
Universal AI Agent OS — audited skills, governance rules, replayable state. One contract, every host agent.
npx -y skills add event4u-app/agent-config --skill project-analysis-zend-laminasAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 7 stars7 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Use for deep Zend Framework or Laminas project analysis: bootstrap, config merge order, service manager, MVC flow, data layer, and migration-specific risks.
SKILL.md
3.6 KB, 672 tokens by cl100k_base, as published. Nobody here has run it
project-analysis-zend-laminas
When to use
Use this skill when:
- The project uses Zend Framework or Laminas
- A deep framework-specific analysis is needed
universal-project-analysisroutes here after framework detection- The issue spans bootstrap, config merge, ServiceManager, MVC flow, or migration concerns
Do NOT use when:
- The task is a small isolated change
- The project is not Zend/Laminas
- The issue is already isolated to another specialist domain
Core principles
- Config merge order is runtime behavior
- ServiceManager resolution rules matter
- Shared services can hide state issues
- Legacy Zend/Laminas migrations often preserve subtle compatibility traps
- MVC flow and module boundaries must be traced explicitly
Procedure
1. Confirm framework generation and version
Check: composer.lock, composer.json, Zend vs Laminas packages, PHP version, migration-related packages.
Validate: framework family is explicit, migration state is known, major modules/components are identified.
2. Analyze bootstrap and config merge order
Inspect: application bootstrap, module loading order, global/local/autoload config, environment-specific overrides, Module.php lifecycle hooks.
Check:
- merge order surprises
- missing overrides
- environment config mismatches
- heavy bootstrap logic
3. Analyze ServiceManager behavior
Inspect: factories, abstract factories, delegators, initializers, shared vs non-shared services, service aliases.
Check:
- incorrect sharing/state leakage
- slow abstract factory fallback
- delegator order problems
- initialization side effects
4. Trace request-to-response flow
Trace: route match → dispatch/listener flow → controller → service layer → data access → view model/response rendering. Validate: authorization/input filtering path is visible, service resolution path is visible, rendering flow is explicit.
5. Analyze data layer and migration risks
Inspect: TableGateway/hydrators, Doctrine if present, SQL abstraction vs raw queries, buffered/unbuffered result usage, Zend → Laminas migration artifacts.
Check:
- namespace drift
- hidden legacy references
- data mapping inconsistencies
- memory/performance risks on large result sets
6. Validate Zend/Laminas analysis quality
Check:
- bootstrap and merge order are explicit
- ServiceManager behavior is mapped
- MVC and data flow are traceable
- migration/legacy risks are evidence-based
- next specialist skill is clear if needed
Output format
- Framework/version summary
- Bootstrap/config findings
- ServiceManager findings
- MVC/data flow findings
- Migration/legacy risks
- Key risks and next steps
Gotcha
- Many Zend/Laminas issues are caused by config order and service resolution, not controller code.
- Shared services and legacy migration remnants can create cross-request or environment-specific bugs.
- Old project behavior may depend on historical bootstrap side effects that are easy to miss.
Do NOT
- Do NOT assume Laminas behavior if the project still carries Zend-era patterns
- Do NOT ignore config merge order
- Do NOT ignore shared-service behavior
- Do NOT treat migration leftovers as harmless
- Do NOT stop at controller code when bootstrap or ServiceManager behavior is involved
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.