What's New
Plugin Marketplace Distribution (#31)
Install the skill with two commands instead of manual git clone:
/plugin marketplace add conorluddy/ios-simulator-skill
/plugin install ios-simulator-skill@conorluddy
Adds .claude-plugin/marketplace.json and plugin.json for Claude Code's plugin system. Git clone still works as a fallback.
Core Data / SwiftData Model Inspector (#33, #38)
New model_inspector.py script — parse .xcdatamodeld packages and @Model Swift declarations from project source files. Zero external dependencies.
Progressive disclosure:
# Summary (3 lines)
python scripts/model_inspector.py --project-path .
# → SwiftData: 20 @Model classes (TrainingSession, Location, ...)
# Structured details
python scripts/model_inspector.py --project-path . --verbose
# Raw source for a specific model
python scripts/model_inspector.py --project-path . --raw TrainingSession- Parses Core Data XML (entities, attributes, relationships, fetch requests)
- Detects model versions and current active version
- Best-effort SwiftData
@Modelclass extraction via regex - Skips dot-prefixed directories (
.archived/,.build/, etc.) - Strips inline comments from type extraction
README Overhaul
- Clearer structure: intro → xcodebuild vs simulator → install → features
- Per-script reference tables with key flags
- Removed stale content, hardcoded paths, and nonexistent references
Full Changelog
- Add plugin marketplace for streamlined installation
- Add skills path to plugin.json for SKILL.md discovery
- Rewrite README with clearer structure and updated install docs
- Add Core Data / SwiftData model inspector
- Fix SwiftData extraction: skip dotdirs, strip comments, deduplicate
- Add --raw flag for full model source dump
- Add script reference tables to README
- Bump version to 1.4.0
What's Changed
- << Copy just this directory into your skills, not the whole repo. by @conorluddy in #15
- Update contributing guidelines in README by @conorluddy in #23
- Fix health check script exiting after first successful check by @imefistoff in #21
- Fix broken CI workflows and stale documentation by @conorluddy in #24
- Accept custom Xcode build configurations by @conorluddy in #25
- Fix minor code quality issues by @conorluddy in #28
- Auto-surface errors and failed tests on build failure by @conorluddy in #29
- Add eval docs and SKILL.md navigation guidance by @conorluddy in #30
- Add plugin marketplace for streamlined installation by @conorluddy in #31
- Add Core Data / SwiftData model inspector by @conorluddy in #38
- Bump version to 1.4.0 by @conorluddy in #39
New Contributors
- @imefistoff made their first contribution in #21
Full Changelog: v1.3.1...v1.4.0