Our review
Performs deep maintenance on the OlyBars repo by analyzing code for unused functions and optimizing GCP deployments.
Strengths
- Identifies dead code through static analysis
- Optimizes Cloud Run configurations on GCP
- Produces a clear and actionable Hygiene Report
- Reduces project bloat and complexity
Limitations
- Only works with the OlyBars repository
- Requires running a specific script
- May miss dynamically referenced functions
Use this skill when the user asks to optimize or clean up the OlyBars project.
Do not use it if the project is not OlyBars or if broader code quality improvements are needed.
Security analysis
CautionThe skill uses a shell command to execute a repository script, which falls under powerful tooling. While the intent is legitimate maintenance, the script’s behavior is unverified, so caution is warranted.
- •The skill instructs running a locally-provided TypeScript script via npx, which could perform arbitrary file system operations or network requests. Although the script is intended for static analysis and cleanup, without auditing its contents, there is inherent risk in execution.
Examples
Optimize the OlyBars project and clean up any redundant code.Clean up the site and find any unused functions in the codebase.Run the janitor script to perform a hygiene check on the repository.name: janitor description: Performs deep maintenance on the OlyBars repo. Use this when the user asks to "optimize the project," "clean up the site," or "find redundant code."
Janitor Skill
Goals
- Maintain a lean, high-performance us-west1 GCP footprint.
- Ensure the repository remains readable for other agents in the swarm.
Instructions
- Introspection: Read
ARCHITECTURE.mdand thepackage.jsonto understand the intended stack. - Analysis: Traverse the
src/directory. Use static analysis to find functions with no internal references. - GCP Guardrails: Verify Cloud Run configurations in
server/aren't bundling unnecessary folders (e.g.,tests/ordocs/) into the production container. - Propose: Create a "Hygiene Report" artifact with a checklist of suggested deletions.
Execution
Use the custom script scripts/janitor.ts to perform the heavy lifting of static analysis.
npx tsx scripts/janitor.ts
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.