Wip Repos

v1.9.72

Repo manifest reconciler. Makes repos-manifest.json the single source of truth for repo organization.

0· 783· 66 versions· 1 current· 1 all-time· Updated 23h ago· MIT-0
byParker Todd Brooks@parkertoddbrooks

Install

openclaw skills install wip-repos

wip-repos

Repo manifest reconciler. Like prettier for folder structure. Move folders around all day; on sync, everything snaps back to where the manifest says.

When to Use This Skill

Use wip-repos for:

  • Checking if the filesystem matches the manifest (check)
  • Moving repos to match the manifest (sync)
  • Adding a new repo to the manifest (add)
  • Moving a repo in the manifest (move)
  • Generating a directory tree from the manifest (tree)

Use after:

  • Cloning a new repo
  • Moving repos between categories
  • Adding new repos to the org

Do NOT Use For

  • Git operations (use git directly)
  • Repo creation on GitHub (use gh)

API Reference

CLI

wip-repos check                              # diff filesystem vs manifest
wip-repos sync --dry-run                     # preview moves
wip-repos sync                               # execute moves
wip-repos add ldm-os/utilities/new-tool --remote wipcomputer/new-tool
wip-repos move ldm-os/utilities/tool --to ldm-os/devops/tool
wip-repos tree                               # generate directory tree

Module

import { check, planSync, addRepo, moveRepo, generateReadmeTree } from '@wipcomputer/wip-repos';

const result = check('/path/to/manifest.json', '/path/to/repos/');
const moves = planSync('/path/to/manifest.json', '/path/to/repos/');

MCP

Tools: repos_check, repos_sync_plan, repos_add, repos_move, repos_tree

Version tags

latestvk97d9ydax0kt5dwbewpmfd31an858jtr

Runtime requirements

📂 Clawdis
Binsnode, git

Install

Install via npm
Bins: wip-repos
npm i -g @wipcomputer/wip-repos