# Madihg Oulipo Autoforge

> Autoforge — Build, Push, Deploy

- Skill: `tomevault-io/madihg-oulipo-autoforge` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/madihg-oulipo-autoforge`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/madihg-oulipo-autoforge/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: DevOps & Infra
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/madihg-oulipo-autoforge

---


# Autoforge — Build, Push, Deploy

Automation workflow for shipping code. Ensures builds are pushed and deployed correctly across projects.

## When to Use

- After building or making changes the user wants live
- When the user says "push", "deploy", "ship", or "build and push"
- When debugging "changes not showing" on a live site

## Core Rules

1. **Always push when you build** — If you run a build and it succeeds, commit and push the changes.
2. **Verify branch before push** — Confirm you're on `main` (or the production branch) and pushing to the correct remote. Run `git branch -vv` and `git remote -v` before pushing.
3. **Deploy after push** — For Vercel projects: either rely on Git-triggered deploys or run `vercel --prod` from the project directory if Git integration is misconfigured.

## Monorepo Deployment

For repos with multiple Vercel projects (e.g. singulars, becoming-borders):

1. **Vercel Git** — Each project must have Root Directory set to its subfolder. Check: Vercel Dashboard → Project → Settings → Git.
2. **GitHub Actions** — Use workflows as fallback when Git integration fails. Add `VERCEL_TOKEN`, `VERCEL_ORG_ID`, `VERCEL_PROJECT_ID` as repo secrets.
3. **Manual deploy** — `cd <subfolder> && vercel --prod` when needed.

## Verification

After push:

- Check Vercel Deployments for new deploy
- Visit live URL and hard refresh (Cmd+Shift+R) if cached

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/madihg) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-11 -->

