post-deploy

Use when verifying deployment after code changes to globally linked packages (npm link), running services, daemons, or scheduled tasks. Triggers when code changes affect a globally installed CLI or a running service. Do not use for general development, CI setup, or initial deployments.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "post-deploy" with this command: npx skills add metyatech/skill-post-deploy/metyatech-skill-post-deploy-post-deploy

Post-change deployment procedures

Detection

Globally linked packages

  • Check npm global links: run npm ls -g --depth=0 and look for entries with -> pointing to a local path.
  • If the changed repo matches a globally linked package, proceed to rebuild.

Running services and scheduled tasks

  • Check for running processes associated with the repo (service names, PM2/systemd/Windows service entries).
  • Check for scheduled tasks (cron, Windows Task Scheduler) referencing the repo.

Rebuild and verify

npm-linked packages

  1. Run the repo's build command (e.g., npm run build, tsc).
  2. Verify the rebuilt output: run the CLI's --version or a smoke command.
  3. Report the verified version.

Services and daemons

  1. Rebuild the service component.
  2. Restart using the service manager (PM2 restart, systemctl restart, etc.).
  3. Verify with deterministic evidence:
    • New PID (compare before/after).
    • Port check (verify listening).
    • Service status query.
    • Log entry showing updated behavior/version.
  4. Report the verification evidence.

Completion gate

Do not claim completion until the running instance reflects the changes. Include verification evidence in the final response.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

code-quality-setup

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

cli-design

No summary provided by upstream source.

Repository SourceNeeds Review
General

manager

No summary provided by upstream source.

Repository SourceNeeds Review
General

autonomous-orchestrator

No summary provided by upstream source.

Repository SourceNeeds Review