Skip to main content
Manus에서 모든 스킬 실행
원클릭으로
GitHub 저장소

rosetta

rosetta에는 meaganewaller에서 수집한 skills 28개가 있으며, 저장소 수준 직업 범위와 사이트 내 skill 상세 페이지를 제공합니다.

수집된 skills
28
Stars
1
업데이트
2026-06-17
Forks
0
직업 범위
직업 카테고리 4개 · 100% 분류됨
저장소 탐색

이 저장소의 skills

agent-memory-patterns
소프트웨어 개발자

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
소프트웨어 개발자

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
소프트웨어 개발자

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
소프트웨어 개발자

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
소프트웨어 개발자

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
소프트웨어 개발자

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

2026-06-17
plugin-authoring
기타 컴퓨터 관련 직업

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
정보 보안 분석가

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
strategic-compact
소프트웨어 개발자

Suggests manual context compaction at logical intervals to preserve context through task phases rather than arbitrary auto-compaction.

2026-06-17
tdd-workflow
소프트웨어 품질 보증 분석가·테스터

Enforces test-driven development with 80%+ coverage — unit, integration, and E2E. Use when writing new features, fixing bugs, or refactoring.

2026-06-17
test-design-heuristics
소프트웨어 품질 보증 분석가·테스터

Use when deciding what to test for a change. Covers the test pyramid, risk-based prioritization, boundary and equivalence partitioning, the edge cases worth checking, and — just as important — what not to test.

2026-06-17
verification-loop
소프트웨어 품질 보증 분석가·테스터

Comprehensive verification pattern for Claude Code sessions — build, types, lint, tests, security, and diff review.

2026-06-17
writing-effective-skills
기타 컴퓨터 관련 직업

Use when writing or reviewing a SKILL.md — how to write a description that reliably triggers the skill, structure the body for progressive disclosure, and keep one skill scoped to one capability. Apply whenever a skill isn't firing when it should, or fires when it shouldn't.

2026-06-17
generating-rbs-inline
소프트웨어 개발자

Generates or updates RBS-inline type annotations directly in Ruby source files as comments. Triggers when creating, updating, or maintaining inline type signatures for Ruby source files. Use for rbs-inline (# @rbs) comments in .rb files, not sig/*.rbs.

2026-06-17
generating-rbs
소프트웨어 개발자

Generates or updates RBS type signatures in separate .rbs files. Triggers when creating, updating, or maintaining type signatures for Ruby source files. Use for sig/**/*.rbs files (Steep/RBS), not inline comments.

2026-06-17
generating-sorbet-inline
소프트웨어 개발자

Generates or updates Sorbet inline type signatures directly in Ruby source files using sig blocks. Triggers when creating, updating, or maintaining inline type signatures for Ruby source files. Use for sig { } blocks and

2026-06-17
generating-sorbet
소프트웨어 개발자

Generates or updates Sorbet type signatures in separate .rbi files. Triggers when creating, updating, or maintaining type signatures for Ruby source files. Use for rbi/**/*.rbi shim files without editing source.

2026-06-17
keep-a-changelog
소프트웨어 개발자

Use when writing or updating a CHANGELOG. Applies the Keep a Changelog format — the six change groups (Added, Changed, Deprecated, Removed, Fixed, Security), reverse-chronological version blocks, ISO dates, and an Unreleased section — kept aligned with Semantic Versioning.

2026-06-17
changelog
소프트웨어 개발자

Generate or update CHANGELOG.md from git history for a release.

2026-06-17
release-notes-writer
소프트웨어 개발자

Use to turn a range of commits into polished, human-readable release notes grouped by theme. Delegate when preparing a GitHub release body or an announcement from a tag range, where the audience is users rather than committers.

2026-06-17
writing-idiomatic-python
소프트웨어 개발자

Use when writing or reviewing Python (3.10+) — modern idioms for typing, data modeling, control flow, and standard-library use, plus the anti-patterns to avoid (mutable default args, bare except, manual index loops, string-built paths).

2026-06-12
writing-idiomatic-ruby
소프트웨어 개발자

Use when writing or reviewing Ruby — Enumerable-driven, expression-oriented idioms (blocks, guard clauses, safe navigation, keyword arguments, predicate methods) and the manual loops, nil checks, and temporary variables they replace.

2026-06-12
writing-idiomatic-typescript
소프트웨어 개발자

Use when writing or reviewing TypeScript — getting value from the type system (unknown over any, discriminated unions, narrowing, satisfies, readonly) and avoiding the escape hatches (any, unchecked as casts, non-null !) that silently defeat it.

2026-06-12
catalog-quality-bar
기타 컴퓨터 관련 직업

Use when reviewing a plugin for the rosetta catalog or registering it in marketplace.json — the quality bar the validator can't fully check, the required manifest/component fields, and how category metadata works. Apply during contribution review or before merging a new plugin.

2026-06-12
changelog
소프트웨어 개발자

Generate or update CHANGELOG.md from git history for a release.

2026-06-12
writing-robust-bash
소프트웨어 개발자

Use when writing or reviewing bash/shell scripts. Covers strict mode, quoting, error handling and cleanup traps, safe command usage, and bash-vs-POSIX portability so scripts fail loudly instead of silently doing the wrong thing.

2026-06-12
keep-a-changelog
소프트웨어 개발자

Use when writing or updating a CHANGELOG. Applies the Keep a Changelog format — the six change groups (Added, Changed, Deprecated, Removed, Fixed, Security), reverse-chronological version blocks, ISO dates, and an Unreleased section — kept aligned with Semantic Versioning.

2026-06-12
pull-request-conventions
소프트웨어 품질 보증 분석가·테스터

Use when writing or reviewing a pull request description. Provides a structure (Summary / Changes / Testing / Notes) and tone guidance focused on the reviewer — lead with why, keep it scannable, never pad a small change into a big description.

2026-06-12