@prmichaelsen/acp-mcp 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (94) hide show
  1. package/.env.example +5 -0
  2. package/AGENT.md +1279 -0
  3. package/README.md +78 -0
  4. package/agent/commands/acp.command-create.md +372 -0
  5. package/agent/commands/acp.design-create.md +224 -0
  6. package/agent/commands/acp.init.md +410 -0
  7. package/agent/commands/acp.package-create.md +894 -0
  8. package/agent/commands/acp.package-info.md +211 -0
  9. package/agent/commands/acp.package-install.md +461 -0
  10. package/agent/commands/acp.package-list.md +279 -0
  11. package/agent/commands/acp.package-publish.md +540 -0
  12. package/agent/commands/acp.package-remove.md +292 -0
  13. package/agent/commands/acp.package-search.md +306 -0
  14. package/agent/commands/acp.package-update.md +310 -0
  15. package/agent/commands/acp.package-validate.md +535 -0
  16. package/agent/commands/acp.pattern-create.md +326 -0
  17. package/agent/commands/acp.plan.md +552 -0
  18. package/agent/commands/acp.proceed.md +336 -0
  19. package/agent/commands/acp.project-create.md +672 -0
  20. package/agent/commands/acp.report.md +394 -0
  21. package/agent/commands/acp.resume.md +237 -0
  22. package/agent/commands/acp.status.md +280 -0
  23. package/agent/commands/acp.sync.md +363 -0
  24. package/agent/commands/acp.task-create.md +390 -0
  25. package/agent/commands/acp.update.md +301 -0
  26. package/agent/commands/acp.validate.md +436 -0
  27. package/agent/commands/acp.version-check-for-updates.md +275 -0
  28. package/agent/commands/acp.version-check.md +190 -0
  29. package/agent/commands/acp.version-update.md +288 -0
  30. package/agent/commands/command.template.md +316 -0
  31. package/agent/commands/git.commit.md +513 -0
  32. package/agent/commands/git.init.md +513 -0
  33. package/agent/commands/mcp-server-starter.add-tool.md +677 -0
  34. package/agent/commands/mcp-server-starter.init.md +894 -0
  35. package/agent/design/.gitkeep +0 -0
  36. package/agent/design/design.template.md +136 -0
  37. package/agent/design/remember-mcp-analysis.md +987 -0
  38. package/agent/design/requirements.template.md +387 -0
  39. package/agent/manifest.template.yaml +13 -0
  40. package/agent/manifest.yaml +109 -0
  41. package/agent/milestones/.gitkeep +0 -0
  42. package/agent/milestones/milestone-1-{title}.template.md +206 -0
  43. package/agent/package.template.yaml +36 -0
  44. package/agent/patterns/.gitkeep +0 -0
  45. package/agent/patterns/bootstrap.template.md +1237 -0
  46. package/agent/patterns/mcp-server-starter.bootstrap.md +597 -0
  47. package/agent/patterns/mcp-server-starter.build-config.md +554 -0
  48. package/agent/patterns/mcp-server-starter.config-management.md +525 -0
  49. package/agent/patterns/mcp-server-starter.server-factory.md +616 -0
  50. package/agent/patterns/mcp-server-starter.server-standalone.md +642 -0
  51. package/agent/patterns/mcp-server-starter.test-config.md +558 -0
  52. package/agent/patterns/mcp-server-starter.tool-creation.md +653 -0
  53. package/agent/patterns/pattern.template.md +364 -0
  54. package/agent/progress.template.yaml +161 -0
  55. package/agent/progress.yaml +33 -0
  56. package/agent/schemas/package.schema.yaml +161 -0
  57. package/agent/scripts/acp.common.sh +1362 -0
  58. package/agent/scripts/acp.install.sh +213 -0
  59. package/agent/scripts/acp.package-create.sh +925 -0
  60. package/agent/scripts/acp.package-info.sh +270 -0
  61. package/agent/scripts/acp.package-install.sh +550 -0
  62. package/agent/scripts/acp.package-list.sh +263 -0
  63. package/agent/scripts/acp.package-publish.sh +420 -0
  64. package/agent/scripts/acp.package-remove.sh +272 -0
  65. package/agent/scripts/acp.package-search.sh +156 -0
  66. package/agent/scripts/acp.package-update.sh +356 -0
  67. package/agent/scripts/acp.package-validate.sh +766 -0
  68. package/agent/scripts/acp.uninstall.sh +85 -0
  69. package/agent/scripts/acp.version-check-for-updates.sh +98 -0
  70. package/agent/scripts/acp.version-check.sh +47 -0
  71. package/agent/scripts/acp.version-update.sh +158 -0
  72. package/agent/scripts/acp.yaml-parser.sh +736 -0
  73. package/agent/scripts/acp.yaml-validate.sh +205 -0
  74. package/agent/tasks/.gitkeep +0 -0
  75. package/agent/tasks/task-1-{title}.template.md +225 -0
  76. package/dist/config.d.ts +4 -0
  77. package/dist/server-factory.d.ts +9 -0
  78. package/dist/server-factory.js +99 -0
  79. package/dist/server-factory.js.map +7 -0
  80. package/dist/server.d.ts +2 -0
  81. package/dist/server.js +106 -0
  82. package/dist/server.js.map +7 -0
  83. package/dist/tools/acp-remote-list-files.d.ts +15 -0
  84. package/dist/types/ssh-config.d.ts +16 -0
  85. package/esbuild.build.js +34 -0
  86. package/esbuild.watch.js +31 -0
  87. package/jest.config.js +31 -0
  88. package/package.json +54 -0
  89. package/src/config.ts +16 -0
  90. package/src/server-factory.ts +43 -0
  91. package/src/server.ts +46 -0
  92. package/src/tools/acp-remote-list-files.ts +89 -0
  93. package/src/types/ssh-config.ts +17 -0
  94. package/tsconfig.json +22 -0
@@ -0,0 +1,292 @@
1
+ # Command: package-remove
2
+
3
+ > **🤖 Agent Directive**: If you are reading this file, the command `@acp.package-remove` has been invoked. Follow the steps below to execute this command.
4
+
5
+ **Namespace**: acp
6
+ **Version**: 2.0.0
7
+ **Created**: 2026-02-18
8
+ **Last Updated**: 2026-02-22
9
+ **Status**: Active
10
+
11
+ ---
12
+
13
+ **Purpose**: Remove installed ACP packages and clean up manifest
14
+ **Category**: Maintenance
15
+ **Frequency**: As Needed
16
+
17
+ ---
18
+
19
+ ## What This Command Does
20
+
21
+ This command removes installed ACP packages by deleting their files from `agent/` directories and removing their entries from `agent/manifest.yaml`. It can optionally preserve locally modified files to prevent accidental loss of customizations.
22
+
23
+ Use this command when you no longer need a package, want to clean up unused dependencies, or need to reinstall a package from scratch.
24
+
25
+ ---
26
+
27
+ ## Prerequisites
28
+
29
+ - [ ] ACP installed in project
30
+ - [ ] `agent/manifest.yaml` exists with installed packages
31
+ - [ ] `agent/scripts/acp.package-remove.sh` exists
32
+ - [ ] Package to remove is actually installed
33
+
34
+ ---
35
+
36
+ ## Steps
37
+
38
+ ### 1. Run Package Remove Script
39
+
40
+ Execute the remove script with the package name.
41
+
42
+ **Actions**:
43
+ - Run `./agent/scripts/acp.package-remove.sh` with package name:
44
+ ```bash
45
+ # Interactive mode (asks for confirmation)
46
+ ./agent/scripts/acp.package-remove.sh <package-name>
47
+
48
+ # Auto-confirm mode (skips prompts)
49
+ ./agent/scripts/acp.package-remove.sh -y <package-name>
50
+
51
+ # Keep modified files
52
+ ./agent/scripts/acp.package-remove.sh --keep-modified <package-name>
53
+ ```
54
+ - The script will:
55
+ - Verify package is installed
56
+ - List files that will be removed
57
+ - Detect locally modified files via checksums
58
+ - Ask for confirmation (unless -y flag used)
59
+ - Remove files (or keep modified ones if --keep-modified)
60
+ - Remove package entry from manifest
61
+ - Update manifest timestamp
62
+ - Report removal summary
63
+
64
+ **Expected Outcome**: Package removed successfully
65
+
66
+ ### 2. Verify Removal
67
+
68
+ Check that files were removed correctly.
69
+
70
+ **Actions**:
71
+ - Verify files deleted from `agent/` directories
72
+ - Check `agent/manifest.yaml` no longer has package entry
73
+ - If `--keep-modified` used, verify modified files were kept
74
+ - Confirm no orphaned files remain
75
+
76
+ **Expected Outcome**: Package completely removed (or modified files kept)
77
+
78
+ ### 3. Document Removal
79
+
80
+ Update progress tracking with removal notes.
81
+
82
+ **Actions**:
83
+ - Add note to `agent/progress.yaml` about package removal
84
+ - Document which package was removed
85
+ - Note removal date
86
+ - List any kept files (if --keep-modified used)
87
+
88
+ **Expected Outcome**: Removal tracked in progress
89
+
90
+ ---
91
+
92
+ ## Verification
93
+
94
+ - [ ] Script executed successfully
95
+ - [ ] Package files removed from agent/ directories
96
+ - [ ] Package entry removed from manifest
97
+ - [ ] Modified files kept if --keep-modified used
98
+ - [ ] Manifest timestamp updated
99
+ - [ ] Removal summary displayed
100
+ - [ ] No errors during removal
101
+
102
+ ---
103
+
104
+ ## Expected Output
105
+
106
+ ### Files Modified
107
+ - `agent/manifest.yaml` - Package entry removed, timestamp updated
108
+ - `agent/patterns/*.md` - Pattern files deleted
109
+ - `agent/commands/*.md` - Command files deleted
110
+ - `agent/design/*.md` - Design files deleted
111
+
112
+ ### Console Output
113
+
114
+ **Standard Removal**:
115
+ ```
116
+ 📦 ACP Package Remover
117
+ ========================================
118
+
119
+ Package: firebase (1.2.0)
120
+
121
+ ⚠️ This will remove:
122
+ - 3 pattern(s)
123
+ - 2 command(s)
124
+ - 1 design(s)
125
+
126
+ Total: 6 file(s)
127
+
128
+ Remove package 'firebase'? (y/N) y
129
+
130
+ Removing files...
131
+ ✓ Removed patterns/user-scoped-collections.md
132
+ ✓ Removed patterns/firebase-security-rules.md
133
+ ✓ Removed patterns/firestore-queries.md
134
+ ✓ Removed commands/firebase.init.md
135
+ ✓ Removed commands/firebase.migrate.md
136
+ ✓ Removed design/firebase-architecture.md
137
+
138
+ Updating manifest...
139
+ ✓ Manifest updated
140
+
141
+ ✅ Removal complete!
142
+
143
+ Removed: 6 file(s)
144
+ ```
145
+
146
+ **With Modified Files** (`--keep-modified`):
147
+ ```
148
+ 📦 ACP Package Remover
149
+ ========================================
150
+
151
+ Package: firebase (1.2.0)
152
+
153
+ ⚠️ This will remove:
154
+ - 3 pattern(s)
155
+ - 2 command(s)
156
+ - 1 design(s)
157
+
158
+ Total: 6 file(s)
159
+
160
+ ⚠️ Modified files detected:
161
+ - patterns/firebase-security-rules.md
162
+
163
+ Modified files will be kept (--keep-modified)
164
+
165
+ Remove package 'firebase'? (y/N) y
166
+
167
+ Removing files...
168
+ ✓ Removed patterns/user-scoped-collections.md
169
+ ⊙ Kept patterns/firebase-security-rules.md (modified)
170
+ ✓ Removed patterns/firestore-queries.md
171
+ ✓ Removed commands/firebase.init.md
172
+ ✓ Removed commands/firebase.migrate.md
173
+ ✓ Removed design/firebase-architecture.md
174
+
175
+ Updating manifest...
176
+ ✓ Manifest updated
177
+
178
+ ✅ Removal complete!
179
+
180
+ Removed: 5 file(s)
181
+ Kept: 1 file(s) (modified)
182
+ ```
183
+
184
+ ---
185
+
186
+ ## Examples
187
+
188
+ ### Example 1: Remove Package
189
+
190
+ **Context**: No longer need firebase package
191
+
192
+ **Invocation**: `@acp.package-remove firebase`
193
+
194
+ **Result**: Prompts for confirmation, removes all 6 files, updates manifest
195
+
196
+ ### Example 2: Remove with Auto-Confirm
197
+
198
+ **Context**: Want to remove without prompts
199
+
200
+ **Invocation**: `@acp.package-remove -y firebase`
201
+
202
+ **Result**: Removes package immediately without confirmation
203
+
204
+ ### Example 3: Keep Modified Files
205
+
206
+ **Context**: Want to remove package but keep customized files
207
+
208
+ **Invocation**: `@acp.package-remove --keep-modified firebase`
209
+
210
+ **Result**: Removes 5 unmodified files, keeps 1 modified file, updates manifest
211
+
212
+ ### Example 4: Package Not Installed
213
+
214
+ **Context**: Try to remove non-existent package
215
+
216
+ **Invocation**: `@acp.package-remove nonexistent`
217
+
218
+ **Result**: Error message "Package not installed: nonexistent", exits without changes
219
+
220
+ ---
221
+
222
+ ## Related Commands
223
+
224
+ - [`@acp.package-install`](acp.package-install.md) - Install packages
225
+ - [`@acp.package-list`](acp.package-list.md) - List installed packages
226
+ - [`@acp.package-info`](acp.package-info.md) - Show package details
227
+ - [`@acp.package-update`](acp.package-update.md) - Update packages
228
+
229
+ ---
230
+
231
+ ## Troubleshooting
232
+
233
+ ### Issue 1: Package not found
234
+
235
+ **Symptom**: Error "Package not installed"
236
+
237
+ **Cause**: Package name incorrect or not installed
238
+
239
+ **Solution**: Run `@acp.package-list` to see installed packages, check spelling
240
+
241
+ ### Issue 2: Files not removed
242
+
243
+ **Symptom**: Files still exist after removal
244
+
245
+ **Cause**: Files were modified and --keep-modified was used
246
+
247
+ **Solution**: This is intentional. Remove manually or run without --keep-modified
248
+
249
+ ### Issue 3: Manifest corrupted after removal
250
+
251
+ **Symptom**: Manifest has syntax errors
252
+
253
+ **Cause**: Rare edge case in awk processing
254
+
255
+ **Solution**: Restore from git backup, reinstall packages
256
+
257
+ ---
258
+
259
+ ## Security Considerations
260
+
261
+ ### File Deletion
262
+ - **Deletes**: All files installed by the package
263
+ - **Preserves**: Modified files if --keep-modified used
264
+ - **Irreversible**: Deleted files cannot be recovered (unless in git)
265
+
266
+ ### Best Practices
267
+ - **Use git**: Commit before removing packages
268
+ - **Review first**: Use `@acp.package-info` to see what will be removed
269
+ - **Keep modified**: Use --keep-modified if you've customized files
270
+ - **Backup**: Consider git commit or manual backup before removal
271
+
272
+ ---
273
+
274
+ ## Notes
275
+
276
+ - Removal is permanent (unless files are in git)
277
+ - Modified files detected via checksum comparison
278
+ - Manifest entry completely removed
279
+ - --keep-modified preserves customizations
280
+ - Safe to remove and reinstall packages
281
+ - Use `@acp.package-list --modified` to see which files would be kept
282
+
283
+ ---
284
+
285
+ **Namespace**: acp
286
+ **Command**: package-remove
287
+ **Version**: 1.0.0
288
+ **Created**: 2026-02-18
289
+ **Last Updated**: 2026-02-18
290
+ **Status**: Active
291
+ **Compatibility**: ACP 2.0.0+
292
+ **Author**: ACP Project
@@ -0,0 +1,306 @@
1
+ # Command: package-search
2
+
3
+ > **🤖 Agent Directive**: If you are reading this file, the command `@acp.package-search` has been invoked. Follow the steps below to execute this command.
4
+
5
+ **Namespace**: acp
6
+ **Version**: 1.0.0
7
+ **Created**: 2026-02-18
8
+ **Last Updated**: 2026-02-18
9
+ **Status**: Active
10
+
11
+ ---
12
+
13
+ **Purpose**: Discover ACP packages on GitHub using the GitHub API
14
+ **Category**: Package Discovery
15
+ **Frequency**: As Needed
16
+
17
+ ---
18
+
19
+ ## What This Command Does
20
+
21
+ This command searches GitHub for ACP packages using the GitHub API. **By default, it only searches repositories with the `acp-package` topic**, ensuring you only see actual ACP packages and not unrelated repositories.
22
+
23
+ It fetches `package.yaml` metadata from each result and displays comprehensive information including version, description, tags, stars, and installation commands.
24
+
25
+ Use this command when you want to discover available ACP packages, find packages for specific technologies (via tags), or browse community-created patterns and commands.
26
+
27
+ ---
28
+
29
+ ## Prerequisites
30
+
31
+ - [ ] Internet connection available
32
+ - [ ] `curl` command available
33
+ - [ ] `agent/scripts/acp.package-search.sh` exists
34
+ - [ ] Optional: `GITHUB_TOKEN` environment variable for higher rate limits
35
+
36
+ ---
37
+
38
+ ## Steps
39
+
40
+ ### 1. Run Package Search Script
41
+
42
+ Execute the search script with your query.
43
+
44
+ **Actions**:
45
+ - Run `./agent/scripts/acp.package-search.sh` with search terms:
46
+ ```bash
47
+ # Search by keyword
48
+ ./agent/scripts/acp.package-search.sh firebase
49
+
50
+ # Filter by tag
51
+ ./agent/scripts/acp.package-search.sh oauth --tag authentication
52
+
53
+ # Search specific user's packages
54
+ ./agent/scripts/acp.package-search.sh --user prmichaelsen
55
+
56
+ # Sort by recently updated
57
+ ./agent/scripts/acp.package-search.sh --sort updated --limit 5
58
+ ```
59
+
60
+ **Expected Outcome**: Search results displayed
61
+
62
+ ### 2. Review Search Results
63
+
64
+ Analyze the displayed packages.
65
+
66
+ **Actions**:
67
+ - Review package names and versions
68
+ - Read descriptions
69
+ - Check star counts (popularity indicator)
70
+ - Note tags (technology indicators)
71
+ - Identify relevant packages for your project
72
+
73
+ **Expected Outcome**: Suitable packages identified
74
+
75
+ ### 3. Install Selected Package
76
+
77
+ Use the provided installation command.
78
+
79
+ **Actions**:
80
+ - Copy installation command from search results
81
+ - Run `@acp.package-install <url>` with the package URL
82
+ - Follow installation prompts
83
+
84
+ **Expected Outcome**: Package installed successfully
85
+
86
+ ---
87
+
88
+ ## Syntax
89
+
90
+ ```bash
91
+ ./agent/scripts/acp.package-search.sh [query] [options]
92
+
93
+ Options:
94
+ --tag <tag> Filter by additional tag
95
+ --user <username> Search specific user's repos
96
+ --org <org> Search specific organization
97
+ --sort <field> Sort by: stars, updated, name (default: stars)
98
+ --limit <n> Limit results (default: 10, max: 100)
99
+ ```
100
+
101
+ ---
102
+
103
+ ## Verification
104
+
105
+ - [ ] Script executed successfully
106
+ - [ ] GitHub API queried successfully
107
+ - [ ] Results displayed with all metadata
108
+ - [ ] Package versions shown
109
+ - [ ] Tags displayed
110
+ - [ ] Star counts shown
111
+ - [ ] Installation commands provided
112
+ - [ ] Filters work correctly
113
+ - [ ] Handles no results gracefully
114
+ - [ ] Handles API errors gracefully
115
+
116
+ ---
117
+
118
+ ## Expected Output
119
+
120
+ ### Files Modified
121
+ None - this is a read-only command
122
+
123
+ ### Console Output
124
+ ```
125
+ 🔍 ACP Package Search
126
+ ========================================
127
+
128
+ ℹ Searching GitHub for: firebase+topic:acp-package
129
+ ℹ Sort by: stars
130
+ ℹ Limit: 10
131
+
132
+ 📦 Found 3 package(s)
133
+
134
+ 1. firebase (1.2.0) ⭐ 45
135
+ https://github.com/prmichaelsen/acp-firebase
136
+ Firebase patterns and utilities for ACP projects
137
+ Tags: firebase, firestore, database, backend
138
+ Install: ./agent/scripts/acp.package-install.sh https://github.com/prmichaelsen/acp-firebase.git
139
+
140
+ 2. firebase-v11 (1.0.0) ⭐ 12
141
+ https://github.com/otheruser/acp-firebase-v11
142
+ Firebase patterns for v11 Admin SDK
143
+ Tags: firebase, firebase-v11, legacy
144
+ Install: ./agent/scripts/acp.package-install.sh https://github.com/otheruser/acp-firebase-v11.git
145
+
146
+ 3. fullstack (2.0.0) ⭐ 89
147
+ https://github.com/community/acp-fullstack
148
+ Complete fullstack patterns including Firebase
149
+ Tags: firebase, cloudflare, tanstack, fullstack
150
+ Install: ./agent/scripts/acp.package-install.sh https://github.com/community/acp-fullstack.git
151
+
152
+ Showing 3 of 3 result(s)
153
+
154
+ To install a package:
155
+ ./agent/scripts/acp.package-install.sh <repository-url>
156
+ ```
157
+
158
+ ---
159
+
160
+ ## Examples
161
+
162
+ ### Example 1: Search by Keyword
163
+
164
+ **Context**: Looking for Firebase-related packages
165
+
166
+ **Invocation**: `@acp.package-search firebase`
167
+
168
+ **Result**: Shows 3 packages with firebase in name/description/tags, sorted by stars
169
+
170
+ ### Example 2: Filter by Tag
171
+
172
+ **Context**: Need OAuth authentication patterns
173
+
174
+ **Invocation**: `@acp.package-search oauth --tag authentication`
175
+
176
+ **Result**: Shows packages tagged with both "oauth" and "authentication"
177
+
178
+ ### Example 3: Browse User's Packages
179
+
180
+ **Context**: Want to see all packages from specific author
181
+
182
+ **Invocation**: `@acp.package-search --user prmichaelsen`
183
+
184
+ **Result**: Shows all acp-package repos from prmichaelsen
185
+
186
+ ### Example 4: Find Recent Packages
187
+
188
+ **Context**: Want to see recently updated packages
189
+
190
+ **Invocation**: `@acp.package-search --sort updated --limit 5`
191
+
192
+ **Result**: Shows 5 most recently updated packages
193
+
194
+ ### Example 5: No Results
195
+
196
+ **Context**: Search for non-existent package
197
+
198
+ **Invocation**: `@acp.package-search nonexistent123`
199
+
200
+ **Result**: "No packages found matching your search", suggests trying broader terms
201
+
202
+ ---
203
+
204
+ ## Related Commands
205
+
206
+ - [`@acp.package-install`](acp.package-install.md) - Install discovered packages
207
+ - [`@acp.package-list`](acp.package-list.md) - List installed packages
208
+ - [`@acp.package-info`](acp.package-info.md) - Show package details
209
+
210
+ ---
211
+
212
+ ## GitHub API Details
213
+
214
+ ### Rate Limits
215
+ - **Without token**: 60 requests/hour
216
+ - **With token**: 5,000 requests/hour
217
+
218
+ ### Setting GitHub Token
219
+ ```bash
220
+ export GITHUB_TOKEN="your_github_token"
221
+ ```
222
+
223
+ ### API Endpoints Used
224
+ - `GET /search/repositories` - Search repos by topic
225
+ - `GET /repos/{owner}/{repo}/contents/package.yaml` - Fetch metadata
226
+
227
+ ---
228
+
229
+ ## Package Discovery Requirements
230
+
231
+ For packages to be discoverable via `@acp.package-search`:
232
+
233
+ 1. **GitHub Topic** (REQUIRED): Add `acp-package` topic to repository
234
+ - This is the canonical way to identify ACP packages
235
+ - Without this topic, packages will NOT appear in search results
236
+ 2. **package.yaml**: Include in repository root with:
237
+ ```yaml
238
+ name: package-name
239
+ version: 1.0.0
240
+ description: Clear description
241
+ tags:
242
+ - tag1
243
+ - tag2
244
+ ```
245
+ 3. **Clear Description**: Add description to GitHub repository
246
+ 4. **ACP Structure**: Follow standard `agent/` directory structure
247
+
248
+ **Note**: The `topic:acp-package` filter is always applied to ensure search results contain only actual ACP packages, not unrelated repositories with "acp" in the name.
249
+
250
+ ---
251
+
252
+ ## Troubleshooting
253
+
254
+ ### Issue 1: No results found
255
+
256
+ **Symptom**: "No packages found"
257
+
258
+ **Cause**: No packages match search criteria
259
+
260
+ **Solution**: Try broader search terms, remove filters, check spelling
261
+
262
+ ### Issue 2: API rate limit exceeded
263
+
264
+ **Symptom**: "API rate limit exceeded" error
265
+
266
+ **Cause**: Made too many requests (60/hour without token)
267
+
268
+ **Solution**: Wait for rate limit reset, or set GITHUB_TOKEN for higher limits
269
+
270
+ ### Issue 3: Package.yaml not found
271
+
272
+ **Symptom**: Version shows "unknown"
273
+
274
+ **Cause**: Package doesn't have package.yaml in root
275
+
276
+ **Solution**: This is informational only, package can still be installed
277
+
278
+ ### Issue 4: Slow response
279
+
280
+ **Symptom**: Search takes long time
281
+
282
+ **Cause**: Fetching package.yaml for each result
283
+
284
+ **Solution**: This is normal, reduce --limit for faster results
285
+
286
+ ---
287
+
288
+ ## Notes
289
+
290
+ - Requires internet connection
291
+ - Uses GitHub API (no authentication required for basic use)
292
+ - Fetches package.yaml for each result (adds latency)
293
+ - Results cached by GitHub (may not show very recent packages)
294
+ - Set GITHUB_TOKEN for higher rate limits
295
+ - Packages must have `acp-package` topic to be discoverable
296
+
297
+ ---
298
+
299
+ **Namespace**: acp
300
+ **Command**: package-search
301
+ **Version**: 1.0.0
302
+ **Created**: 2026-02-18
303
+ **Last Updated**: 2026-02-18
304
+ **Status**: Active
305
+ **Compatibility**: ACP 2.0.0+
306
+ **Author**: ACP Project