@prmichaelsen/reddit-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 (138) hide show
  1. package/.claude/settings.local.json +23 -0
  2. package/.env.example +13 -0
  3. package/AGENT.md +1772 -0
  4. package/README.md +54 -0
  5. package/agent/commands/acp.clarification-capture.md +386 -0
  6. package/agent/commands/acp.clarification-create.md +432 -0
  7. package/agent/commands/acp.clarifications-research.md +326 -0
  8. package/agent/commands/acp.command-create.md +432 -0
  9. package/agent/commands/acp.design-create.md +286 -0
  10. package/agent/commands/acp.design-reference.md +355 -0
  11. package/agent/commands/acp.index.md +423 -0
  12. package/agent/commands/acp.init.md +546 -0
  13. package/agent/commands/acp.package-create.md +895 -0
  14. package/agent/commands/acp.package-info.md +212 -0
  15. package/agent/commands/acp.package-install.md +539 -0
  16. package/agent/commands/acp.package-list.md +280 -0
  17. package/agent/commands/acp.package-publish.md +541 -0
  18. package/agent/commands/acp.package-remove.md +293 -0
  19. package/agent/commands/acp.package-search.md +307 -0
  20. package/agent/commands/acp.package-update.md +361 -0
  21. package/agent/commands/acp.package-validate.md +540 -0
  22. package/agent/commands/acp.pattern-create.md +386 -0
  23. package/agent/commands/acp.plan.md +577 -0
  24. package/agent/commands/acp.proceed.md +882 -0
  25. package/agent/commands/acp.project-create.md +675 -0
  26. package/agent/commands/acp.project-info.md +312 -0
  27. package/agent/commands/acp.project-list.md +226 -0
  28. package/agent/commands/acp.project-remove.md +379 -0
  29. package/agent/commands/acp.project-set.md +227 -0
  30. package/agent/commands/acp.project-update.md +307 -0
  31. package/agent/commands/acp.projects-restore.md +228 -0
  32. package/agent/commands/acp.projects-sync.md +347 -0
  33. package/agent/commands/acp.report.md +407 -0
  34. package/agent/commands/acp.resume.md +239 -0
  35. package/agent/commands/acp.sessions.md +301 -0
  36. package/agent/commands/acp.status.md +293 -0
  37. package/agent/commands/acp.sync.md +364 -0
  38. package/agent/commands/acp.task-create.md +500 -0
  39. package/agent/commands/acp.update.md +302 -0
  40. package/agent/commands/acp.validate.md +466 -0
  41. package/agent/commands/acp.version-check-for-updates.md +276 -0
  42. package/agent/commands/acp.version-check.md +191 -0
  43. package/agent/commands/acp.version-update.md +289 -0
  44. package/agent/commands/command.template.md +339 -0
  45. package/agent/commands/git.commit.md +526 -0
  46. package/agent/commands/git.init.md +514 -0
  47. package/agent/design/.gitkeep +0 -0
  48. package/agent/design/design.template.md +154 -0
  49. package/agent/design/requirements.md +332 -0
  50. package/agent/design/requirements.template.md +387 -0
  51. package/agent/index/.gitkeep +0 -0
  52. package/agent/index/local.main.template.yaml +37 -0
  53. package/agent/manifest.template.yaml +13 -0
  54. package/agent/manifest.yaml +61 -0
  55. package/agent/milestones/.gitkeep +0 -0
  56. package/agent/milestones/milestone-1-foundation-listings-mvp.md +140 -0
  57. package/agent/milestones/milestone-1-{title}.template.md +206 -0
  58. package/agent/milestones/milestone-2-content-interaction.md +56 -0
  59. package/agent/milestones/milestone-3-users-and-messaging.md +54 -0
  60. package/agent/milestones/milestone-4-subreddits-and-flair.md +56 -0
  61. package/agent/milestones/milestone-5-moderation.md +53 -0
  62. package/agent/milestones/milestone-6-advanced-features-and-polish.md +56 -0
  63. package/agent/package.template.yaml +86 -0
  64. package/agent/patterns/.gitkeep +0 -0
  65. package/agent/patterns/bootstrap.template.md +1237 -0
  66. package/agent/patterns/pattern.template.md +382 -0
  67. package/agent/progress.template.yaml +161 -0
  68. package/agent/progress.yaml +223 -0
  69. package/agent/schemas/package.schema.yaml +276 -0
  70. package/agent/scripts/acp.common.sh +1781 -0
  71. package/agent/scripts/acp.yaml-parser.sh +985 -0
  72. package/agent/tasks/.gitkeep +0 -0
  73. package/agent/tasks/milestone-1-foundation-listings-mvp/task-1-project-scaffolding.md +75 -0
  74. package/agent/tasks/milestone-1-foundation-listings-mvp/task-2-reddit-oauth.md +71 -0
  75. package/agent/tasks/milestone-1-foundation-listings-mvp/task-3-reddit-api-client.md +71 -0
  76. package/agent/tasks/milestone-1-foundation-listings-mvp/task-4-listing-tools.md +65 -0
  77. package/agent/tasks/milestone-1-foundation-listings-mvp/task-5-search-tools.md +43 -0
  78. package/agent/tasks/milestone-1-foundation-listings-mvp/task-6-testing-verification.md +49 -0
  79. package/agent/tasks/milestone-2-content-interaction/task-7-post-tools.md +56 -0
  80. package/agent/tasks/milestone-2-content-interaction/task-8-comment-tools.md +49 -0
  81. package/agent/tasks/milestone-2-content-interaction/task-9-vote-save-report-tools.md +50 -0
  82. package/agent/tasks/milestone-3-users-and-messaging/task-10-account-tools.md +44 -0
  83. package/agent/tasks/milestone-3-users-and-messaging/task-11-user-profile-tools.md +50 -0
  84. package/agent/tasks/milestone-3-users-and-messaging/task-12-private-message-tools.md +50 -0
  85. package/agent/tasks/milestone-4-subreddits-and-flair/task-13-subreddit-tools.md +47 -0
  86. package/agent/tasks/milestone-4-subreddits-and-flair/task-14-flair-tools.md +46 -0
  87. package/agent/tasks/milestone-4-subreddits-and-flair/task-15-http-transport.md +53 -0
  88. package/agent/tasks/milestone-5-moderation/task-16-mod-action-tools.md +48 -0
  89. package/agent/tasks/milestone-5-moderation/task-17-mod-listing-tools.md +47 -0
  90. package/agent/tasks/milestone-5-moderation/task-18-mod-management-tools.md +42 -0
  91. package/agent/tasks/milestone-6-advanced-features-and-polish/task-19-multireddit-tools.md +49 -0
  92. package/agent/tasks/milestone-6-advanced-features-and-polish/task-20-wiki-tools.md +47 -0
  93. package/agent/tasks/milestone-6-advanced-features-and-polish/task-21-documentation-polish.md +65 -0
  94. package/agent/tasks/task-1-{title}.template.md +244 -0
  95. package/dist/auth/oauth.d.ts +15 -0
  96. package/dist/auth/oauth.d.ts.map +1 -0
  97. package/dist/client/reddit.d.ts +28 -0
  98. package/dist/client/reddit.d.ts.map +1 -0
  99. package/dist/factory.d.ts +2 -0
  100. package/dist/factory.d.ts.map +1 -0
  101. package/dist/factory.js +30394 -0
  102. package/dist/factory.js.map +7 -0
  103. package/dist/index.d.ts +2 -0
  104. package/dist/index.d.ts.map +1 -0
  105. package/dist/index.js +31955 -0
  106. package/dist/index.js.map +7 -0
  107. package/dist/server.d.ts +5 -0
  108. package/dist/server.d.ts.map +1 -0
  109. package/dist/server.js +30401 -0
  110. package/dist/server.js.map +7 -0
  111. package/dist/tools/listings.d.ts +4 -0
  112. package/dist/tools/listings.d.ts.map +1 -0
  113. package/dist/tools/search.d.ts +4 -0
  114. package/dist/tools/search.d.ts.map +1 -0
  115. package/dist/transport/http.d.ts +7 -0
  116. package/dist/transport/http.d.ts.map +1 -0
  117. package/dist/types/index.d.ts +78 -0
  118. package/dist/types/index.d.ts.map +1 -0
  119. package/esbuild.build.js +21 -0
  120. package/jest.config.js +18 -0
  121. package/package.json +46 -0
  122. package/src/auth/oauth.ts +200 -0
  123. package/src/client/reddit.ts +245 -0
  124. package/src/factory.ts +5 -0
  125. package/src/index.ts +31 -0
  126. package/src/server.ts +36 -0
  127. package/src/tools/listings.ts +202 -0
  128. package/src/tools/search.ts +85 -0
  129. package/src/transport/http.ts +49 -0
  130. package/src/types/index.ts +83 -0
  131. package/tests/fixtures/reddit-responses.ts +132 -0
  132. package/tests/helpers/mock-client.ts +36 -0
  133. package/tests/unit/auth.test.ts +89 -0
  134. package/tests/unit/client.test.ts +218 -0
  135. package/tests/unit/listings.test.ts +113 -0
  136. package/tests/unit/search.test.ts +59 -0
  137. package/tests/unit/server.test.ts +14 -0
  138. package/tsconfig.json +21 -0
@@ -0,0 +1,276 @@
1
+ # Command: version-check-for-updates
2
+
3
+ > **🤖 Agent Directive**: If you are reading this file, the command `@acp-version-check-for-updates` has been invoked. Follow the steps below to execute this command.
4
+
5
+ **Namespace**: acp
6
+ **Version**: 1.0.0
7
+ **Created**: 2026-02-16
8
+ **Last Updated**: 2026-02-16
9
+ **Status**: Active
10
+ **Scripts**: acp.version-check-for-updates.sh
11
+
12
+ ---
13
+
14
+ **Purpose**: Check if newer version of ACP is available without applying updates
15
+ **Category**: Maintenance
16
+ **Frequency**: Per Session
17
+
18
+ ---
19
+
20
+ ## What This Command Does
21
+
22
+ This command checks if a newer version of ACP is available by running the update check script. It's a non-destructive operation that only reports whether updates exist and what changed, without modifying any files.
23
+
24
+ Use this command at the start of sessions (it's part of `@acp-init`) or when you want to see if improvements are available. It shows what's new via the CHANGELOG and lets you decide whether to update.
25
+
26
+ Unlike `@acp-version-update` which applies updates immediately, this command only checks and reports, giving you control over when to update.
27
+
28
+ ---
29
+
30
+ ## Prerequisites
31
+
32
+ - [ ] ACP installed in project
33
+ - [ ] `agent/scripts/acp.version-check-for-updates.sh` exists
34
+ - [ ] Internet connection available
35
+ - [ ] Git installed
36
+
37
+ ---
38
+
39
+ ## Steps
40
+
41
+ ### 1. Run Update Check Script
42
+
43
+ Execute the check-for-updates script.
44
+
45
+ **Actions**:
46
+ - Check if `./agent/scripts/acp.version-check-for-updates.sh` exists
47
+ - If exists, run the script
48
+ - If doesn't exist, report that update checking is unavailable
49
+ - Capture script output
50
+
51
+ **Expected Outcome**: Update status determined
52
+
53
+ ### 2. Parse Script Output
54
+
55
+ Interpret the results from the update check.
56
+
57
+ **Actions**:
58
+ - Check if updates are available
59
+ - Extract available version number (if updates exist)
60
+ - Note if already up to date
61
+ - Handle any errors from script
62
+
63
+ **Expected Outcome**: Update status understood
64
+
65
+ ### 3. Display Update Status
66
+
67
+ Show whether updates are available.
68
+
69
+ **Actions**:
70
+ - If up to date: Display success message
71
+ - If updates available: Show new version number
72
+ - Display current version for comparison
73
+ - Show update availability clearly
74
+
75
+ **Expected Outcome**: User knows if updates exist
76
+
77
+ ### 4. Show What Changed
78
+
79
+ If updates are available, display changelog.
80
+
81
+ **Actions**:
82
+ - Fetch CHANGELOG from repository
83
+ - Show changes between current and new version
84
+ - Highlight Added, Changed, Removed, Fixed sections
85
+ - Make it easy to understand what's new
86
+
87
+ **Expected Outcome**: User understands what would change
88
+
89
+ ### 5. Prompt for Action
90
+
91
+ Ask user if they want to update.
92
+
93
+ **Actions**:
94
+ - If updates available: Suggest running `@acp-version-update`
95
+ - If up to date: No action needed
96
+ - Provide clear next steps
97
+
98
+ **Expected Outcome**: User knows what to do next
99
+
100
+ ---
101
+
102
+ ## Verification
103
+
104
+ - [ ] Update check script executed successfully
105
+ - [ ] Update status determined (up to date or updates available)
106
+ - [ ] If updates available, changelog displayed
107
+ - [ ] Clear next steps provided
108
+ - [ ] No files modified
109
+
110
+ ---
111
+
112
+ ## Expected Output
113
+
114
+ ### Files Modified
115
+ None - this is a read-only command
116
+
117
+ ### Console Output (Up to Date)
118
+ ```
119
+ 🔍 Checking for ACP updates...
120
+
121
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
122
+
123
+ ✅ Your ACP is up to date!
124
+
125
+ Current Version: 1.0.3
126
+ Latest Version: 1.0.3
127
+ Released: 2026-02-13
128
+
129
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
130
+
131
+ ℹ️ No action needed.
132
+ ```
133
+
134
+ ### Console Output (Updates Available)
135
+ ```
136
+ 🔍 Checking for ACP updates...
137
+
138
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
139
+
140
+ 🆕 Updates Available!
141
+
142
+ Current Version: 1.0.3
143
+ Latest Version: 1.1.0
144
+ Released: 2026-02-20
145
+
146
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
147
+
148
+ 📋 What's New in 1.1.0:
149
+
150
+ Added:
151
+ • ACP Commands system with 15 core commands
152
+ • Flat directory structure with dot notation
153
+ • Command template for creating custom commands
154
+ • Third-party command installation via @acp-install
155
+
156
+ Changed:
157
+ • Improved installation scripts
158
+ • Better autocomplete support
159
+ • Enhanced documentation
160
+
161
+ Fixed:
162
+ • Various bug fixes and improvements
163
+
164
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
165
+
166
+ 🎯 To update, run: @acp-version-update
167
+
168
+ 📚 Full changelog:
169
+ https://github.com/prmichaelsen/agent-context-protocol/blob/mainline/CHANGELOG.md
170
+ ```
171
+
172
+ ### Status Update
173
+ No status changes - read-only operation
174
+
175
+ ---
176
+
177
+ ## Examples
178
+
179
+ ### Example 1: Session Start Check
180
+
181
+ **Context**: Starting work session, want to check for updates
182
+
183
+ **Invocation**: `@acp-version-check-for-updates`
184
+
185
+ **Result**: Shows you're on 1.0.3, latest is 1.1.0, displays what's new, suggests updating
186
+
187
+ ### Example 2: Already Up to Date
188
+
189
+ **Context**: Checking for updates after recent update
190
+
191
+ **Invocation**: `@acp-version-check-for-updates`
192
+
193
+ **Result**: Confirms you're on latest version (1.0.3), no action needed
194
+
195
+ ### Example 3: No Internet Connection
196
+
197
+ **Context**: Offline, trying to check for updates
198
+
199
+ **Invocation**: `@acp-version-check-for-updates`
200
+
201
+ **Result**: Reports cannot connect to repository, shows current version, suggests trying again when online
202
+
203
+ ---
204
+
205
+ ## Related Commands
206
+
207
+ - [`@acp-version-check`](acp.version-check.md) - Show current version without checking for updates
208
+ - [`@acp-version-update`](acp.version-update.md) - Apply updates if available
209
+ - [`@acp-init`](acp.init.md) - Includes update check as first step
210
+
211
+ ---
212
+
213
+ ## Troubleshooting
214
+
215
+ ### Issue 1: Script not found
216
+
217
+ **Symptom**: Error "acp.version-check-for-updates.sh not found"
218
+
219
+ **Cause**: Older ACP installation without update scripts
220
+
221
+ **Solution**: Update ACP manually by downloading latest AGENT.md, or install update scripts from repository
222
+
223
+ ### Issue 2: Network error
224
+
225
+ **Symptom**: Error "Cannot connect to repository"
226
+
227
+ **Cause**: No internet connection or GitHub unavailable
228
+
229
+ **Solution**: Check internet connection and try again. Use `@acp-version-check` to see current version offline.
230
+
231
+ ### Issue 3: Permission denied
232
+
233
+ **Symptom**: Error "Permission denied" when running script
234
+
235
+ **Cause**: Script not executable
236
+
237
+ **Solution**: Run `chmod +x agent/scripts/acp.version-check-for-updates.sh` to make it executable
238
+
239
+ ---
240
+
241
+ ## Security Considerations
242
+
243
+ ### File Access
244
+ - **Reads**: `AGENT.md`, `CHANGELOG.md`
245
+ - **Writes**: None (read-only command)
246
+ - **Executes**: `./agent/scripts/acp.version-check-for-updates.sh`
247
+
248
+ ### Network Access
249
+ - **APIs**: GitHub API (via check-for-updates script)
250
+ - **Repositories**: Accesses ACP repository to check latest version
251
+
252
+ ### Sensitive Data
253
+ - **Secrets**: Does not access any secrets or credentials
254
+ - **Credentials**: Does not access any credentials
255
+
256
+ ---
257
+
258
+ ## Notes
259
+
260
+ - Non-destructive operation - only checks, doesn't modify files
261
+ - Requires internet connection to check for updates
262
+ - Part of `@acp-init` workflow
263
+ - Safe to run multiple times
264
+ - Update check script may cache results briefly
265
+ - Shows changelog diff between versions
266
+
267
+ ---
268
+
269
+ **Namespace**: acp
270
+ **Command**: version-check-for-updates
271
+ **Version**: 1.0.0
272
+ **Created**: 2026-02-16
273
+ **Last Updated**: 2026-02-16
274
+ **Status**: Active
275
+ **Compatibility**: ACP 1.0.3+
276
+ **Author**: ACP Project
@@ -0,0 +1,191 @@
1
+ # Command: version-check
2
+
3
+ > **🤖 Agent Directive**: If you are reading this file, the command `@acp-version-check` has been invoked. Follow the steps below to execute this command.
4
+
5
+ **Namespace**: acp
6
+ **Version**: 1.0.0
7
+ **Created**: 2026-02-16
8
+ **Last Updated**: 2026-02-16
9
+ **Status**: Active
10
+ **Scripts**: acp.version-check.sh
11
+
12
+ ---
13
+
14
+ **Purpose**: Display current ACP version and compatibility information
15
+ **Category**: Maintenance
16
+ **Frequency**: As Needed
17
+
18
+ ---
19
+
20
+ ## What This Command Does
21
+
22
+ This command displays the current version of ACP installed in the project by running a simple script that extracts version information from AGENT.md. It provides a quick way to check which version you're using without needing to manually open files.
23
+
24
+ Use this command when you need to verify your ACP version, check compatibility with other tools, or before reporting issues. It's a simple, read-only operation that provides version information at a glance.
25
+
26
+ Unlike `@acp-version-check-for-updates` which checks for newer versions, this command only shows your current version without making any network requests.
27
+
28
+ ---
29
+
30
+ ## Prerequisites
31
+
32
+ - [ ] ACP installed in project (AGENT.md exists)
33
+ - [ ] `agent/scripts/acp.version-check.sh` exists (or can extract from AGENT.md directly)
34
+
35
+ ---
36
+
37
+ ## Steps
38
+
39
+ ### 1. Run Version Script
40
+
41
+ Execute the version check script.
42
+
43
+ **Actions**:
44
+ - Run `./agent/scripts/acp.version-check.sh`
45
+ - Script extracts version from AGENT.md using grep
46
+ - Displays version, created date, and status
47
+
48
+ **Expected Outcome**: Version information displayed
49
+
50
+ **Alternative** (if script doesn't exist):
51
+ ```bash
52
+ # Extract version directly from AGENT.md
53
+ grep -m 1 "^\*\*Version\*\*:" AGENT.md | sed 's/.*: //'
54
+ ```
55
+
56
+ ---
57
+
58
+ ## Verification
59
+
60
+ - [ ] Version script executed successfully (or AGENT.md read directly)
61
+ - [ ] Version number displayed
62
+ - [ ] Output is clear and well-formatted
63
+ - [ ] No errors encountered
64
+
65
+ ---
66
+
67
+ ## Expected Output
68
+
69
+ ### Files Modified
70
+ None - this is a read-only command
71
+
72
+ ### Console Output
73
+ ```
74
+ 📦 ACP Version Information
75
+
76
+ Version: 1.0.3
77
+ Created: 2026-02-11
78
+ Status: Production Pattern
79
+
80
+ ✓ ACP is installed
81
+
82
+ To check for updates: ./agent/scripts/acp.version-check-for-updates.sh
83
+ To update ACP: ./agent/scripts/acp.version-update.sh
84
+ ```
85
+
86
+ ### Status Update
87
+ No status changes - read-only operation
88
+
89
+ ---
90
+
91
+ ## Examples
92
+
93
+ ### Example 1: Quick Version Check
94
+
95
+ **Context**: Want to know which ACP version you're using
96
+
97
+ **Invocation**: `@acp-version-check`
98
+
99
+ **Result**: Shows version 1.0.3, created 2026-02-11, status: Production Pattern
100
+
101
+ ### Example 2: Before Reporting Issue
102
+
103
+ **Context**: Need to report a bug and want to include version info
104
+
105
+ **Invocation**: `@acp-version-check`
106
+
107
+ **Result**: Displays version 1.0.3, helps you provide accurate bug report
108
+
109
+ ### Example 3: Verifying Installation
110
+
111
+ **Context**: Just installed ACP, want to confirm it worked
112
+
113
+ **Invocation**: `@acp-version-check`
114
+
115
+ **Result**: Shows version installed, confirms ACP is working
116
+
117
+ ---
118
+
119
+ ## Related Commands
120
+
121
+ - [`@acp-version-check-for-updates`](acp.version-check-for-updates.md) - Check if newer version available
122
+ - [`@acp-version-update`](acp.version-update.md) - Update to latest version
123
+ - [`@acp-init`](acp.init.md) - Includes version check as part of initialization
124
+
125
+ ---
126
+
127
+ ## Troubleshooting
128
+
129
+ ### Issue 1: AGENT.md not found
130
+
131
+ **Symptom**: Error message "AGENT.md not found"
132
+
133
+ **Cause**: ACP not installed or AGENT.md deleted
134
+
135
+ **Solution**: Reinstall ACP using the installation script
136
+
137
+ ### Issue 2: Script not found
138
+
139
+ **Symptom**: Error "acp.version-check.sh not found"
140
+
141
+ **Cause**: Older ACP installation without version script
142
+
143
+ **Solution**: Extract version directly from AGENT.md using grep command shown in Steps section
144
+
145
+ ### Issue 3: Version not found in AGENT.md
146
+
147
+ **Symptom**: Grep returns no results
148
+
149
+ **Cause**: AGENT.md format changed or corrupted
150
+
151
+ **Solution**: Manually open AGENT.md and check header, or update ACP to latest version
152
+
153
+ ---
154
+
155
+ ## Security Considerations
156
+
157
+ ### File Access
158
+ - **Reads**: `AGENT.md`
159
+ - **Writes**: None (read-only command)
160
+ - **Executes**: `./agent/scripts/acp.version-check.sh` (simple grep script)
161
+
162
+ ### Network Access
163
+ - **APIs**: None
164
+ - **Repositories**: None
165
+
166
+ ### Sensitive Data
167
+ - **Secrets**: Does not access any secrets or credentials
168
+ - **Credentials**: Does not access any credentials
169
+
170
+ ---
171
+
172
+ ## Notes
173
+
174
+ - This is a read-only command with no side effects
175
+ - No network access required
176
+ - Fast operation (runs simple grep command)
177
+ - Safe to run anytime
178
+ - Useful for troubleshooting and bug reports
179
+ - Can be run offline
180
+ - Script is simple and safe (just reads AGENT.md)
181
+
182
+ ---
183
+
184
+ **Namespace**: acp
185
+ **Command**: version-check
186
+ **Version**: 1.0.0
187
+ **Created**: 2026-02-16
188
+ **Last Updated**: 2026-02-16
189
+ **Status**: Active
190
+ **Compatibility**: ACP 1.0.3+
191
+ **Author**: ACP Project