ワンクリックで
implement
Implement a feature or fix following project patterns and expert knowledge
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Implement a feature or fix following project patterns and expert knowledge
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Commit staged changes with a clear, natural message
Investigate audio glitches, artefacts, device routing failures, and CoreAudio issues
Analyse code for SOLID and DRY violations and produce a concrete refactoring plan
Update CLAUDE.md, ARCHITECTURE.md, and knowledge files to reflect current codebase state
Run build, tests, and quality checks before committing
| name | implement |
| description | Implement a feature or fix following project patterns and expert knowledge |
| disable-model-invocation | true |
| allowed-tools | Read, Glob, Grep, Edit, Write, Bash(swift build*), Bash(swift test*), LSP |
Implement the following: $ARGUMENTS
Determine which knowledge files are relevant based on the task:
docs/dev/coreaudio.md and docs/dev/realtime-safety.mddocs/dev/coreaudio.md and docs/dev/known-issues.mddocs/dev/swift-concurrency.md and docs/dev/memory-safety.mddocs/dev/project-patterns.mddocs/dev/known-issues.md if you encounter unexpected behaviourRead the relevant files using the Read tool before starting implementation.
Follow these project conventions:
AudioDevice, DeviceEnumerating)refreshDevices, start)-ing suffix (Enumerating, VolumeControlling)DeviceEnumerationService)let smoothingInterval)src/domain/ (zero dependencies)src/services/ (one responsibility each)unowned store references@MainActor for UI-bound classesactor for thread-safe isolated statenonisolated(unsafe) for audio thread access (with safety proof)@Observable for view modelsAfter implementation:
swift build to verify compilationswift test to verify no regressions