No description
Find a file
Thomas Ricouard bc7f7883c8 Add parallel Codex sub-agent reviews to SKILL
Update simplify-code/SKILL.md to introduce parallel review sub-agents and reorganize steps. The doc now: recommends determining the smallest diff command, uses repository local instructions to disambiguate patterns, and adds a Step 2 that launches four Codex sub-agents (Reuse, Quality, Efficiency, Clarity) with guidance on prompts, expected outputs, and recommended roles. It also clarifies aggregation of findings, discarding duplicates/conflicts, renumbers subsequent steps (fixing, validation, summary), and tightens wording about applying only high-confidence, behavior-preserving fixes and not staging/committing changes.
2026-03-19 17:26:35 +01:00
app-store-changelog docs: add OpenAI metadata to public skills 2026-03-16 10:09:09 +01:00
docs Add SwiftUI UI patterns skill and references 2026-01-04 18:26:56 +01:00
github docs: add OpenAI metadata to public skills 2026-03-16 10:09:09 +01:00
ios-debugger-agent docs: add OpenAI metadata to public skills 2026-03-16 10:09:09 +01:00
macos-menubar-tuist-app Add more skills 2026-03-19 08:52:23 +01:00
macos-spm-app-packaging docs: add OpenAI metadata to public skills 2026-03-16 10:09:09 +01:00
orchestrate-batch-refactor Add more skills 2026-03-19 08:52:23 +01:00
project-skill-audit docs: add project skill audit skill 2026-03-16 10:05:47 +01:00
react-component-performance docs: add OpenAI metadata to public skills 2026-03-16 10:09:09 +01:00
scripts Add dynamic skills index and pre-commit hook 2025-12-31 08:51:09 +01:00
simplify-code Add parallel Codex sub-agent reviews to SKILL 2026-03-19 17:26:35 +01:00
swift-concurrency-expert docs: add OpenAI metadata to public skills 2026-03-16 10:09:09 +01:00
swiftui-liquid-glass docs: add OpenAI metadata to public skills 2026-03-16 10:09:09 +01:00
swiftui-performance-audit docs: add OpenAI metadata to public skills 2026-03-16 10:09:09 +01:00
swiftui-ui-patterns docs: add OpenAI metadata to public skills 2026-03-16 10:09:09 +01:00
swiftui-view-refactor docs: add OpenAI metadata to public skills 2026-03-16 10:09:09 +01:00
.DS_Store Update README.md to refine skill descriptions and installation instructions, enhancing clarity on the purpose and usage of each skill. Remove outdated sections and streamline content for better readability. Update .DS_Store file. 2026-03-16 13:36:02 +01:00
LICENSE Create LICENSE 2026-01-07 19:09:37 +01:00
README.md Update README.md to refine skill descriptions and installation instructions, enhancing clarity on the purpose and usage of each skill. Remove outdated sections and streamline content for better readability. Update .DS_Store file. 2026-03-16 13:36:02 +01:00

GitHub Pages

Skills Public

A collection of reusable development skills for Apple platforms, GitHub workflows, React performance work, and skill curation.

Overview

This repository contains focused, self-contained skills that help with recurring engineering tasks such as generating App Store release notes, debugging iOS apps, improving SwiftUI and React code, packaging macOS apps, and auditing what new skills a project actually needs.

Install: place these skill folders under $CODEX_HOME/skills

Skills

This repo currently includes 11 skills:

Skill Folder Description
App Store Changelog app-store-changelog Creates user-facing App Store release notes from git history by collecting changes since the last tag, filtering for user-visible work, and rewriting it into concise "What's New" bullets.
GitHub github Uses the gh CLI to inspect and operate on GitHub issues, pull requests, workflow runs, and API data, including CI checks, run logs, and advanced queries.
iOS Debugger Agent ios-debugger-agent Uses XcodeBuildMCP to build, launch, and debug the current iOS app on a booted simulator, including UI inspection, interaction, screenshots, and log capture.
macOS SwiftPM App Packaging (No Xcode) macos-spm-app-packaging Scaffolds, builds, packages, signs, and optionally notarizes SwiftPM-based macOS apps without requiring an Xcode project.
Project Skill Audit project-skill-audit Analyzes a project's past Codex sessions, memory, existing local skills, and conventions to recommend the highest-value new skills or updates to existing ones.
React Component Performance react-component-performance Diagnoses slow React components by finding re-render churn, expensive render work, unstable props, and list bottlenecks, then suggests targeted optimizations and validation steps.
Swift Concurrency Expert swift-concurrency-expert Reviews and fixes Swift 6.2+ concurrency issues such as actor isolation problems, Sendable violations, main-actor annotations, and data-race diagnostics.
SwiftUI Liquid Glass swiftui-liquid-glass Implements, reviews, or refactors SwiftUI features to use the iOS 26+ Liquid Glass APIs correctly, with proper modifier ordering, grouping, interactivity, and fallbacks.
SwiftUI Performance Audit swiftui-performance-audit Audits SwiftUI runtime performance from code and architecture, focusing on invalidation storms, identity churn, layout thrash, heavy render work, and profiling guidance.
SwiftUI UI Patterns swiftui-ui-patterns Provides best practices and example-driven guidance for building SwiftUI screens and components, including navigation, sheets, app wiring, async state, and reusable UI patterns.
SwiftUI View Refactor swiftui-view-refactor Refactors SwiftUI view files toward smaller subviews, MV-style data flow, stable view trees, explicit dependency injection, and correct Observation usage.

Usage

Each skill is self-contained. Refer to the SKILL.md file in each skill directory for triggers, workflow guidance, examples, and supporting references.

Contributing

Skills are designed to be focused and reusable. When adding new skills, ensure they:

  • Have a clear, single purpose
  • Include comprehensive documentation
  • Follow consistent patterns with existing skills
  • Include reference materials when applicable