post_merge_setup

No, I don't want to write a new script. I want to write a new script.

Updated Mar 17, 2026
One-click install
npx skills add https://github.com/shahmirerror/gsdcp-mobile --skill post-merge-setup-shahmirerror
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: post_merge_setup
Source: https://github.com/shahmirerror/gsdcp-mobile/tree/main/.local/skills/post_merge_setup
Command: npx skills add https://github.com/shahmirerror/gsdcp-mobile --skill post-merge-setup-shahmirerror

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Post-merge maintenance can be error-prone and manual. This Skill automates the post-merge setup by executing a configured setup script and performing workflow reconciliation to align running workflows with the project's .replit configuration, alerting the agent on failures.

Core Features & Use Cases

  • Automated Setup Execution: Runs the configured post-merge script from the project root (bash) to install dependencies, run migrations, and rebuild.
  • Workflow Reconciliation: Synchronizes active workflows with the current .replit config, stopping removed ones and restarting active ones.
  • Config Management: Exposes getPostMergeConfig and setPostMergeConfig methods to read/update script path and timeout.

Quick Start

Create a post-merge script at the path configured in your .replit and then run the post-merge setup to verify.

Frequently Asked Questions about post_merge_setup

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate post-merge setup for dependencies and migrations?

Automate post-merge setup by executing a configured bash script from the project root to install dependencies, run migrations, and rebuild. This process aligns active workflows with the .replit configuration and alerts the agent on any execution failures.

How does workflow reconciliation work with the .replit config after a merge?

Workflow reconciliation synchronizes active workflows with the current .replit config after a merge. It automatically stops removed workflows and restarts active ones to ensure the running environment matches the project's configuration without manual intervention.

What do I need to configure before running post-merge automation?

You need to create a post-merge bash script at your project root and configure its path and timeout using setPostMergeConfig. This setup allows the automation to execute scripts and reconcile workflows without manual intervention.

Can I use this to synchronize Replit workflows when stopping removed processes?

Yes, workflow reconciliation automatically stops removed workflows and restarts active ones based on the .replit config. This ensures running processes stay synchronized with the project configuration after merges, preventing orphaned workflows.

Why does my post-merge script fail to execute during workflow reconciliation?

Post-merge script execution can fail if the script is not located at the configured project root path or if the execution exceeds the configured timeout. The automation alerts the agent on failures, allowing you to check the script path and timeout settings via getPostMergeConfig.