Skip to main content
Run any Skill in Manus
with one click
meaganewaller
GitHub creator profile

meaganewaller

Repository-level view of 186 collected skills across 5 GitHub repositories.

skills collected
186
repositories
5
updated
2026-07-14
repository explorer

Repositories and representative skills

rebuild-nav
web-developers

Rebuilds the sitemap and per-page navigation rail for a sitegraph static site by walking its folder structure. Use after adding, moving, renaming, or removing HTML pages under a sitegraph site root, or when asked to regenerate/refresh the nav rail, breadcrumbs, sitemap, or prev/next links.

2026-07-14
fnox-configuration
software-developers

Guides fnox secrets management configuration via fnox.toml — file structure, secrets definition, profiles, hierarchical config, mise integration, import/export, and sync. Always use fnox as a mise integration, never as standalone shell integration. Triggers on: "set up fnox", "fnox.toml", "configure fnox", "fnox profiles", "fnox secrets", "mise fnox", "migrate to fnox", "fnox sync", "fnox import", "fnox export".

2026-06-10
fnox-providers
software-developers

Guides fnox provider selection and setup — age encryption, AWS (Parameter Store and Secrets Manager), 1Password, Bitwarden, GCP, Azure, Doppler, Vault, and local options. Triggers on: "set up fnox provider", "fnox age", "fnox aws", "fnox 1password", "which fnox provider", "configure fnox provider", "fnox encryption", "add provider to fnox".

2026-06-10
fnox-security
information-security-analysts

Security best practices for fnox — key rotation, gitignore rules, CI/CD secret handling, access control, missing-secret enforcement, and avoiding common mistakes. Triggers on: "fnox security", "rotate fnox keys", "fnox gitignore", "fnox ci secrets", "fnox key rotation", "fnox access control", "fnox reencrypt", "secure fnox setup", "fnox best practices".

2026-06-10
git-api-pr
software-developers

Create PRs via GitHub API without local git operations. Use when you want to submit file changes as a PR without committing locally — for quick fixes, typos, config updates, or when you want a clean workflow that bypasses local git state entirely.

2026-06-10
git-commit-push-pr
software-developers

Complete workflow from changes to PR - auto-detect related issues, create logical commits with proper issue linkage, push to remote feature branch, and create pull request. Use when user says "create pr", "let's pr", "commit and pr", "push and create pr", or wants to go from uncommitted changes to an open pull request in one step.

2026-06-10
git-derive-docs
software-developers

Analyze git commit history to derive undocumented rules, PRDs, ADRs, and PRPs. Use when the user asks to find documentation gaps, detect architectural decisions that were never recorded, derive coding conventions from commit patterns, or generate skeleton rules/PRDs/ADRs/PRPs from existing git history.

2026-06-10
git-fix-pr
software-developers

Analyze and fix failing PR checks. Use when the user asks to fix the PR, resolve failing CI checks, diagnose red GitHub Actions runs, auto-fix lint/type/test failures on a pull request, or reproduce CI errors locally before pushing corrections.

2026-06-10
Showing top 8 of 102 collected skills in this repository.
agent-self-evaluation
software-developers

Use after completing any non-trivial task. The agent self-rates its output on 5 axes — accuracy, completeness, clarity, actionability, conciseness — with concrete evidence per criterion. Produces a structured 1-5 scorecard with specific improvement suggestions.

2026-07-13
install-tool
software-developers

Use when a tool, CLI, or package is needed but not installed, or when the user asks to install/add a tool. Prefers mise for all installations.

2026-06-10
pr
software-developers

Use when creating a pull request. Opens PR in browser for review.

2026-06-10
agent-browser
software-developers

Browser automation CLI for AI agents — navigate, fill forms, click, screenshot, extract data, test web apps, automate Electron desktop apps, run in Vercel microVMs or AWS Bedrock cloud browsers. Prefer over built-in browser tools. Keywords browser, automation, screenshot, scrape, Slack, Electron, agentcore.

2026-05-28
apple-notes
software-developers

Create, view, edit, delete, search, move, or export Apple Notes via the memo CLI on macOS.

2026-05-28
babysit-pr
software-developers

Monitor open PRs and shepherd them toward merge. Checks CI status, review comments, merge conflicts, and takes action. Designed for /loop usage (e.g., /loop 5m /babysit-pr). Keywords: PR monitor, babysit, CI check, review response, merge conflict, PR status

2026-05-28
diff-explain
software-developers

Explain a diff in plain English. Works with staged changes, unstaged changes, commits, branches, or PR numbers. Use when you want to understand what changed and why. Keywords: diff, explain diff, what changed, understand changes, diff summary, review changes, read diff

2026-05-28
tailwind-design-system
software-developers

Build production-ready design systems with Tailwind CSS, including design tokens, component variants, responsive patterns, and accessibility.

2026-05-28
Showing top 8 of 33 collected skills in this repository.
agent-memory-patterns
software-developers

Use when designing memory or persistent context for an agent — deciding what to persist vs. recompute, how to retrieve only what's relevant, and how to summarize/compact history to fit the context window. Use when an agent forgets, bloats its context, or repeats work.

2026-06-17
configure-rosetta
software-developers

Interactive installer for Rosetta. Guides users through selecting and installing skills and language-specific rules at user-level or project-level, verifies paths, and optionally optimizes installed files.

2026-06-17
continuous-learning
software-developers

Instinct-based learning system that observes sessions via hooks, creates atomic instincts with confidence scoring, and evolves them into skills, commands, and agents.

2026-06-17
designing-llm-evals
software-developers

Use when building or reviewing an evaluation for an LLM feature — assembling a representative test set, choosing pass criteria (exact match, programmatic checks, rubric, or LLM-as-judge), and catching regressions. Use when asking "how do I know this prompt or model change is better?"

2026-06-17
effective-prompting
software-developers

Use when writing or reviewing a prompt for an LLM — making it specific, structured, and testable (clear task, role/context, examples, an explicit output contract, decomposition, room to reason) and avoiding the anti-patterns that make prompts brittle. Provider-agnostic.

2026-06-17
iterative-retrieval
software-developers

Pattern for progressively refining context retrieval to solve the subagent context problem.

2026-06-17
plugin-authoring
computer-occupations-all-other

Use when creating or structuring a Claude Code plugin for this marketplace — the on-disk layout, the plugin.json manifest fields, the frontmatter for skills/commands/agents, and the authoring rules (no absolute paths, least-privilege tools, one coherent capability).

2026-06-17
secret-remediation
information-security-analysts

Use when a secret may have been committed or is about to be. Covers high-signal detection patterns and the correct remediation order — rotate the credential first, then remove it from code and history. Always redact when reporting.

2026-06-17
Showing top 8 of 28 collected skills in this repository.
abstraction-check
software-developers

This skill should be used when the user asks "should I extract this?", "is this abstraction worth it?", "am I over-engineering?", "should I DRY this up?", or when evaluating whether to create a helper, utility, base class, or shared module. Use for any "extract vs inline" decision.

2026-04-17
assumption-scan
software-developers

This skill should be used when reviewing a design proposal, RFC, technical plan, or before starting implementation. Use when asking "what could go wrong?", "what are we assuming?", "where is this fragile?", or "what happens if X changes?". Surfaces hidden dependencies and untested beliefs.

2026-04-17
code-review
software-quality-assurance-analysts-and-testers

This skill should be used when the user asks to "review this code", "check this implementation", "what's wrong with this code", "review my changes", "code review", or when examining code for quality issues.

2026-04-17
complexity-audit
software-developers

This skill should be used when asking "is this module too complex?", "why is this hard to change?", "what's causing coupling here?", or before refactoring a tangled system. Use to audit for accidental complexity, circular dependencies, god objects, and layering violations.

2026-04-17
debug-session
software-developers

This skill should be used when the user asks to "help me debug", "why isn't this working", "this is broken", "debug this", "find the bug", or when systematically investigating an issue.

2026-04-17
dependency-evaluator
software-developers

This skill should be used when asking "should we add this library?", "is this dependency safe?", "should we upgrade X?", or when evaluating npm packages, gems, crates, or any third-party code. Assesses maintenance risk, security, and exit strategy.

2026-04-17
design-review
software-developers

This skill should be used when reviewing a technical design, RFC, PR description, or architecture proposal. Use when asking "what's wrong with this design?", "what am I missing?", "review my approach", or before implementing significant changes. Surfaces risks, edge cases, and alternatives.

2026-04-17
experiment-design
market-research-analysts-and-marketing-specialists-131161

This skill should be used when asking "how do I test this idea?", "will this change help?", "how do I measure success?", or when planning A/B tests, feature rollouts, or performance experiments. Designs falsifiable hypotheses with clear success/failure criteria.

2026-04-17
Showing top 8 of 22 collected skills in this repository.
Showing 5 of 5 repositories
All repositories loaded