this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add marketplace installation instructions to README

- Document /plugin marketplace add for official Claude Code installation
- Add manual skill installation instructions (symlink/copy)
- Add axe skill to features, skills section, and directory structure
- Use correct repo URL: aliceisjustplaying/claude-resources-monorepo

๐Ÿค– Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

alice 6f420ec8 c27be60e

+56 -3
+56 -3
README.md
··· 8 8 9 9 | Component | Description | 10 10 |-----------|-------------| 11 - | **Skills** | EPUB reader and PDF-to-Markdown converter for document processing | 11 + | **Skills** | EPUB reader, PDF-to-Markdown converter, and axe (iOS Simulator control) | 12 12 | **Plan Saver Plugin** | Automatically saves plans from plan mode to project directories | 13 13 | **Slash Commands** | `/latest-plan`, `/reflect`, `/handoff` for workflow enhancement | 14 14 | **Utility Scripts** | Standalone scripts for plan management | ··· 17 17 18 18 ## ๐Ÿš€ Installation 19 19 20 - ### Quick Setup 20 + ### Option 1: Claude Code Marketplace (Recommended) 21 21 22 - Run the setup script to install everything: 22 + Install plugins using the official Claude Code plugin system: 23 23 24 24 ```bash 25 + # Add this repo as a marketplace 26 + /plugin marketplace add aliceisjustplaying/claude-resources-monorepo 27 + 28 + # Install plugins 29 + /plugin install plan-saver@alice-marketplace 30 + /plugin install handoff@alice-marketplace 31 + ``` 32 + 33 + **Note:** Skills (epub, pdf-to-markdown, axe) are not distributed via marketplaces. See "Installing Skills" below. 34 + 35 + ### Option 2: Clone + Setup Script (Full Access) 36 + 37 + For developers who want everything, or to contribute: 38 + 39 + ```bash 40 + git clone https://github.com/aliceisjustplaying/claude-resources-monorepo.git 41 + cd claude-resources-monorepo 25 42 ./setup.sh 26 43 ``` 27 44 ··· 32 49 - Symlink plugins โ†’ `~/.claude/plugins/` 33 50 - Run plugin installers (e.g., plan-saver daemon setup) 34 51 52 + ### Installing Skills 53 + 54 + Skills must be copied or symlinked manually. Choose one: 55 + 56 + **Personal use (available in all your projects):** 57 + ```bash 58 + # Clone the repo, then symlink specific skills 59 + ln -s /path/to/claude-code-skills-monorepo/skills/epub ~/.claude/skills/epub 60 + ln -s /path/to/claude-code-skills-monorepo/skills/pdf-to-markdown ~/.claude/skills/pdf-to-markdown 61 + ln -s /path/to/claude-code-skills-monorepo/skills/axe ~/.claude/skills/axe 62 + ``` 63 + 64 + **Per-project (shared with collaborators via git):** 65 + ```bash 66 + # Copy a skill into your project 67 + cp -r /path/to/claude-code-skills-monorepo/skills/epub .claude/skills/ 68 + git add .claude/skills/epub 69 + git commit -m "Add epub skill" 70 + ``` 71 + 35 72 --- 36 73 37 74 ## ๐Ÿ“ฆ Components ··· 103 140 104 141 **Requirements:** Python 3.11+, virtual environment created automatically on first use 105 142 143 + #### axe 144 + 145 + Control iOS Simulators via accessibility APIs for UI automation and testing. 146 + 147 + | Capability | Description | 148 + |------------|-------------| 149 + | describe-ui | Get the full accessibility tree | 150 + | tap | Tap by accessibility label, ID, or coordinates | 151 + | type | Type text into focused element | 152 + | swipe | Swipe gestures with start/end coordinates | 153 + | button | Hardware buttons (home, lock) | 154 + 155 + **Requirements:** Xcode, `axe` CLI in PATH 156 + 106 157 --- 107 158 108 159 ### Commands ··· 153 204 โ”‚ โ”œโ”€โ”€ latest-plan.sh 154 205 โ”‚ โ””โ”€โ”€ save-plan.sh 155 206 โ”œโ”€โ”€ skills/ # Claude Code skills 207 + โ”‚ โ”œโ”€โ”€ axe/ # iOS Simulator control 208 + โ”‚ โ”‚ โ””โ”€โ”€ SKILL.md 156 209 โ”‚ โ”œโ”€โ”€ epub/ # EPUB reader (TypeScript) 157 210 โ”‚ โ”‚ โ”œโ”€โ”€ SKILL.md 158 211 โ”‚ โ”‚ โ”œโ”€โ”€ README.md