steipete/agent-scripts

Scripts for agents, shared between my repositories.

View on GitHub ↗Jump to charts ↓

Summary Information

Updated 27 minutes ago
Added to GitGenius on September 1st, 2026
Created on November 8th, 2025
Open Issues & Pull Requests: 0 (+0)
GitHub issues: Enabled
Number of forks: 545
Total Stargazers: 6,599 (+0)
Total Subscribers: 66 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 3.1 days
Mean response time: 28.7 days
90th percentile: 92.9 days
Tracked items: 10

How this project is maintained

Around half of the issues opened in the past year never receive a reply. Only 19% of issues opened in the past year have been closed. Three people close 90% of everything that gets resolved.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 0
New in 7 days: 0
Closed in 7 days: 0
Avg open age: N/A days
Stale 30+ days: 0
Stale 90+ days: 0

Recent activity

Opened in 7 days: 0
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 0

Top labels

  • P3 (3)
  • clawsweeper:needs-maintainer-review (3)
  • clawsweeper:needs-product-decision (3)
  • clawsweeper:no-new-fix-pr (3)
  • issue-rating: 🌊 off-meta tidepool (3)
  • impact:other (1)

Most active issues this week

No issue events were indexed in the last 7 days.

Detailed Description

Agent Scripts is a collection of shared instructions, skills, and helper scripts for AI agents used across local workspaces.

The project solves the problem of managing reusable agent capabilities and guardrails across multiple repositories and agent platforms. It provides a centralized canonical source for agent rules, workflow skills, and portable helper scripts. The core mechanism is a skill routing layer where each skill is defined in a SKILL.md file with YAML front matter describing its purpose and implementation. A sync script manages discovery and symlink topology across different agent platforms, handling name collision resolution and validating skill integrity before exposing them to agents like Codex and Claude Code.

The tool is designed for developers maintaining multiple projects that use AI agents and need consistent, shared skill definitions across those projects. It suits workflows where you want to define reusable agent capabilities once and expose them to multiple agent platforms without duplication. The project emphasizes keeping skill descriptions short and generic to optimize for routing rather than documentation, and provides validation tooling to catch errors after edits. It handles the specific discovery patterns of different agents—Codex scans nested directories while Claude Code requires a flat structure—by maintaining appropriate symlink mirrors and resolving collisions with a clear precedence order.

The project maintains strict validation rules for skill naming and structure, rejecting duplicates and unknown arguments during sync operations. It includes audit tooling to detect problematic symlink topologies like nested self-references. The sync script performs rechecks before each operation but does not provide atomic concurrency protection, stopping on errors and reporting any removals already completed. Test fixtures are available for isolated coverage of the sync behavior, and the project distinguishes between broad repair operations and scoped legacy topology handling.