Deploy release system
Skill Aiweline/WelineFramework/.codex/skills/deploy-release-system
npx -y skills add Aiweline/WelineFramework --skill deploy-release-systemAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 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
Weline_Deploy — random ~wh~ Webhook URL via module Controller/Router.php (ModuleRouter), webhook_secret, deploy:webhook:setup, deploy:release, WLS+Nginx.
SKILL.md
1.5 KB, as published. Nobody here has run it
Deploy Release System
Canonical: dev/ai/skills/CI发布工程师-部署发布系统/SKILL.md
Module Router pattern: dev/ai/skills/框架核心工程师-路由事件与扩展/SKILL.md
Essentials
- Public URL: random
https://<host>/~wh~<hex>fromdeploy:webhook:setup— not/deploy. - Routing:
app/code/Weline/Deploy/Controller/Router.phpimplementsRouterInterface;Weline_ModuleRoutercallsprocess()→ rewrites$pathto internaldeploy/webhook/deploy. Use~wh~prefix for fast bail-out. - Secret:
webhook_secretin backend = Git platform Secret. - Version probe:
<webhook_path>/version→ internaldeploy/version.
Commands
php bin/w deploy:webhook:setup --base-url=https://example.com
php bin/w deploy:webhook:setup --force -y --base-url=https://example.com
php bin/w deploy:webhook:setup --rotate-path -y --base-url=https://example.com
When adding similar custom URLs in other modules
- Add
Controller/Router.php+RouterInterface::process() - Use a rare path prefix; early
returnif no match - Rewrite
$pathto existing generated controller route - Clear
ProcessUrlBefore::clearCache()when config-driven paths change
Split-repo (分仓) → CI发布工程师-分仓发布.
Project core sync (分项) → CI发布工程师-分项更新.