AgentStack
SKILL verified MIT Self-run

Metagit Graph Maintain

skill-metagit-ai-metagit-cli-metagit-graph-maintain · by metagit-ai

>-

No reviews yet
0 installs
3 views
0.0% view→install

Install

$ agentstack add skill-metagit-ai-metagit-cli-metagit-graph-maintain

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Metagit Graph Maintain? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Workspace graph maintenance

Use this skill to discover and keep durable cross-repo edges in .metagit.yml graph.relationships, then sync them into GitNexus.

When to use

| Phase | Trigger | |-------|---------| | Discover | New umbrella workspace, empty graph.relationships, or first graph authoring pass | | Maintain | After adding repos, promoting inferred deps, or refreshing GitNexus overlay |

First-time discovery (report only)

Do not apply until the operator approves the discovery report.

export METAGIT_AGENT_MODE=true
metagit prompt workspace -c .metagit.yml -k graph-discover --text-only
metagit workspace list -c .metagit.yml --json
metagit config graph suggest -c .metagit.yml --json --include-declared --min-confidence all

Deliver a Graph Discovery Report:

  • inferred edges grouped by confidence (high / medium / low)
  • gap pairs with no machine path (need operator interview)
  • proposed_manual_edges[] from interview answers
  • operations_preview JSON — not applied

After sign-off, continue with the maintenance workflow below (or metagit prompt workspace -k graph-maintain).

Maintenance workflow

1. Bootstrap context

export METAGIT_AGENT_MODE=true
metagit prompt workspace -c .metagit.yml -k graph-maintain --text-only
metagit workspace list -c .metagit.yml --json

2. Suggest candidates

metagit config graph suggest -c .metagit.yml --json
metagit config graph suggest -c .metagit.yml --min-confidence high --json

MCP: metagit_suggest_graph_relationships

Review candidates[] for confidence, evidence, and source_edge_type. Skip low-confidence edges unless the operator approves.

3. Preview and apply

# Save operations from suggest JSON to ops.json, then:
metagit config preview -c .metagit.yml --file ops.json

# Apply all suggested candidates (medium+ confidence by default)
metagit config graph suggest -c .metagit.yml --apply

# Apply selected ids only
metagit config graph suggest -c .metagit.yml --apply \
  --candidate-id alpha-api-to-beta-worker-depends_on

metagit config validate -c .metagit.yml

MCP: metagit_apply_graph_relationships (dry_run: true to preview, save: true to persist)

4. Export and ingest GitNexus overlay

./skills/metagit-gitnexus/scripts/ingest-workspace-graph.sh -c .metagit.yml

Or manually:

metagit config graph export -c .metagit.yml --format tool-calls --output /tmp/graph-tool-calls.json

Then run each gitnexus_cypher call (or use the ingest script).

5. Refresh per-repo indexes

./skills/metagit-gitnexus/scripts/analyze-targets.sh  

6. Sync GitNexus group (cross-index)

After repos are indexed, align the workspace with a GitNexus group:

./skills/metagit-gitnexus/scripts/sync-group.sh -c .metagit.yml
# MCP: metagit_gitnexus_group_sync

Enables gitnexus group query / group impact across member repos.

Output contract

Return:

  • candidate count and applied count
  • validation result after apply
  • GitNexus ingest status (schema + statement count)
  • repos still stale/missing in GitNexus registry

Safety

  • Default --min-confidence medium; require operator approval for --min-confidence all
  • Never remove or rewrite existing manual relationships
  • Use --dry-run / dry_run: true before first apply in a workspace
  • Do not ingest Cypher until metagit config validate passes

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.