@prmichaelsen/remember-mcp 2.8.0 → 3.12.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.
- package/AGENT.md +296 -250
- package/CHANGELOG.md +468 -0
- package/README.md +163 -46
- package/agent/commands/acp.clarification-create.md +382 -0
- package/agent/commands/acp.command-create.md +0 -1
- package/agent/commands/acp.design-create.md +0 -1
- package/agent/commands/acp.init.md +0 -1
- package/agent/commands/acp.package-create.md +0 -1
- package/agent/commands/acp.package-info.md +0 -1
- package/agent/commands/acp.package-install.md +0 -1
- package/agent/commands/acp.package-list.md +0 -1
- package/agent/commands/acp.package-publish.md +0 -1
- package/agent/commands/acp.package-remove.md +0 -1
- package/agent/commands/acp.package-search.md +0 -1
- package/agent/commands/acp.package-update.md +0 -1
- package/agent/commands/acp.package-validate.md +0 -1
- package/agent/commands/acp.pattern-create.md +0 -1
- package/agent/commands/acp.plan.md +0 -1
- package/agent/commands/acp.proceed.md +0 -1
- package/agent/commands/acp.project-create.md +0 -1
- package/agent/commands/acp.project-info.md +309 -0
- package/agent/commands/acp.project-list.md +0 -1
- package/agent/commands/acp.project-remove.md +379 -0
- package/agent/commands/acp.project-set.md +0 -1
- package/agent/commands/acp.project-update.md +296 -0
- package/agent/commands/acp.report.md +0 -1
- package/agent/commands/acp.resume.md +0 -1
- package/agent/commands/acp.status.md +0 -1
- package/agent/commands/acp.sync.md +0 -1
- package/agent/commands/acp.task-create.md +17 -10
- package/agent/commands/acp.update.md +0 -1
- package/agent/commands/acp.validate.md +0 -1
- package/agent/commands/acp.version-check-for-updates.md +0 -1
- package/agent/commands/acp.version-check.md +0 -1
- package/agent/commands/acp.version-update.md +0 -1
- package/agent/commands/command.template.md +0 -5
- package/agent/commands/git.commit.md +13 -2
- package/agent/commands/git.init.md +0 -1
- package/agent/design/comment-memory-type.md +2 -2
- package/agent/design/local.collaborative-memory-sync.md +265 -0
- package/agent/design/local.content-flags.md +210 -0
- package/agent/design/local.ghost-persona-system.md +273 -0
- package/agent/design/local.group-acl-integration.md +338 -0
- package/agent/design/local.memory-acl-schema.md +352 -0
- package/agent/design/local.memory-collection-pattern-v2.md +348 -0
- package/agent/design/local.moderation-and-space-config.md +257 -0
- package/agent/design/local.v2-api-reference.md +621 -0
- package/agent/design/local.v2-migration-guide.md +191 -0
- package/agent/design/local.v2-usage-examples.md +265 -0
- package/agent/design/permissions-storage-architecture.md +11 -3
- package/agent/design/soft-delete-system.md +291 -0
- package/agent/design/trust-escalation-prevention.md +9 -2
- package/agent/design/trust-system-implementation.md +12 -3
- package/agent/milestones/milestone-13-soft-delete-system.md +306 -0
- package/agent/milestones/milestone-14-memory-collection-v2.md +182 -0
- package/agent/milestones/milestone-15-moderation-space-config.md +126 -0
- package/agent/package.template.yaml +0 -17
- package/agent/progress.yaml +762 -49
- package/agent/scripts/acp.common.sh +2 -0
- package/agent/scripts/acp.install.sh +15 -85
- package/agent/scripts/acp.package-install-optimized.sh +454 -0
- package/agent/scripts/acp.package-install.sh +248 -380
- package/agent/scripts/acp.package-validate.sh +0 -99
- package/agent/scripts/acp.project-info.sh +218 -0
- package/agent/scripts/acp.project-remove.sh +302 -0
- package/agent/scripts/acp.project-update.sh +296 -0
- package/agent/scripts/acp.yaml-parser.sh +128 -10
- package/agent/tasks/milestone-14-memory-collection-v2/task-165-core-infrastructure-setup.md +171 -0
- package/agent/tasks/milestone-14-memory-collection-v2/task-166-update-remember-publish.md +191 -0
- package/agent/tasks/milestone-14-memory-collection-v2/task-167-update-remember-retract.md +186 -0
- package/agent/tasks/milestone-14-memory-collection-v2/task-168-implement-remember-revise.md +184 -0
- package/agent/tasks/milestone-14-memory-collection-v2/task-169-update-remember-search-space.md +179 -0
- package/agent/tasks/milestone-14-memory-collection-v2/task-170-update-remember-create-update.md +139 -0
- package/agent/tasks/milestone-14-memory-collection-v2/task-172-performance-testing-optimization.md +161 -0
- package/agent/tasks/milestone-14-memory-collection-v2/task-173-documentation-examples.md +258 -0
- package/agent/tasks/milestone-15-moderation-space-config/task-174-add-moderation-schema-fields.md +57 -0
- package/agent/tasks/milestone-15-moderation-space-config/task-175-create-space-config-service.md +64 -0
- package/agent/tasks/milestone-15-moderation-space-config/task-176-wire-moderation-publish-flow.md +45 -0
- package/agent/tasks/milestone-15-moderation-space-config/task-177-add-moderation-search-filters.md +70 -0
- package/agent/tasks/milestone-15-moderation-space-config/task-178-create-remember-moderate-tool.md +69 -0
- package/agent/tasks/milestone-15-moderation-space-config/task-179-documentation-integration-tests.md +58 -0
- package/agent/tasks/milestone-16-ghost-system/task-187-ghost-config-firestore.md +41 -0
- package/agent/tasks/milestone-16-ghost-system/task-188-trust-filter-integration.md +44 -0
- package/agent/tasks/milestone-16-ghost-system/task-189-ghost-memory-filtering.md +43 -0
- package/agent/tasks/milestone-16-ghost-system/task-190-ghost-config-tools.md +45 -0
- package/agent/tasks/milestone-16-ghost-system/task-191-escalation-firestore.md +38 -0
- package/agent/tasks/milestone-16-ghost-system/task-192-documentation-verification.md +39 -0
- package/agent/tasks/milestone-7-trust-permissions/task-180-access-result-permission-types.md +69 -0
- package/agent/tasks/milestone-7-trust-permissions/task-181-firestore-permissions-access-logs.md +56 -0
- package/agent/tasks/milestone-7-trust-permissions/task-182-trust-enforcement-service.md +68 -0
- package/agent/tasks/milestone-7-trust-permissions/task-183-access-control-service.md +70 -0
- package/agent/tasks/milestone-7-trust-permissions/task-184-permission-tools.md +79 -0
- package/agent/tasks/milestone-7-trust-permissions/task-185-wire-trust-into-search-query.md +55 -0
- package/agent/tasks/milestone-7-trust-permissions/task-186-documentation-verification.md +56 -0
- package/agent/tasks/task-70-add-soft-delete-schema-fields.md +165 -0
- package/agent/tasks/task-71-implement-delete-confirmation-flow.md +257 -0
- package/agent/tasks/task-72-add-deleted-filter-to-search-tools.md +18 -0
- package/agent/tasks/task-73-update-relationship-handling.md +18 -0
- package/agent/tasks/task-74-add-unit-tests-soft-delete.md +18 -0
- package/agent/tasks/task-75-update-documentation-changelog.md +26 -0
- package/agent/tasks/task-76-fix-indexnullstate-schema-bug.md +197 -0
- package/dist/collections/composite-ids.d.ts +106 -0
- package/dist/collections/core-infrastructure.spec.d.ts +11 -0
- package/dist/collections/dot-notation.d.ts +106 -0
- package/dist/collections/tracking-arrays.d.ts +176 -0
- package/dist/constants/content-types.d.ts +1 -0
- package/dist/schema/v2-collections-comments.spec.d.ts +8 -0
- package/dist/schema/v2-collections.d.ts +210 -0
- package/dist/server-factory.d.ts +15 -0
- package/dist/server-factory.js +3261 -1316
- package/dist/server.js +2926 -1236
- package/dist/services/access-control.d.ts +103 -0
- package/dist/services/access-control.spec.d.ts +2 -0
- package/dist/services/credentials-provider.d.ts +24 -0
- package/dist/services/credentials-provider.spec.d.ts +2 -0
- package/dist/services/escalation.service.d.ts +22 -0
- package/dist/services/escalation.service.spec.d.ts +2 -0
- package/dist/services/ghost-config.service.d.ts +55 -0
- package/dist/services/ghost-config.service.spec.d.ts +2 -0
- package/dist/services/space-config.service.d.ts +23 -0
- package/dist/services/space-config.service.spec.d.ts +2 -0
- package/dist/services/trust-enforcement.d.ts +83 -0
- package/dist/services/trust-enforcement.spec.d.ts +2 -0
- package/dist/services/trust-validator.d.ts +43 -0
- package/dist/services/trust-validator.spec.d.ts +2 -0
- package/dist/tools/confirm-publish-moderation.spec.d.ts +8 -0
- package/dist/tools/confirm.d.ts +8 -1
- package/dist/tools/create-memory.d.ts +2 -1
- package/dist/tools/create-memory.spec.d.ts +10 -0
- package/dist/tools/create-relationship.d.ts +2 -1
- package/dist/tools/delete-memory.d.ts +7 -31
- package/dist/tools/delete-relationship.d.ts +2 -1
- package/dist/tools/deny.d.ts +2 -1
- package/dist/tools/find-similar.d.ts +10 -2
- package/dist/tools/get-preferences.d.ts +2 -1
- package/dist/tools/ghost-config.d.ts +27 -0
- package/dist/tools/ghost-config.spec.d.ts +2 -0
- package/dist/tools/moderate.d.ts +20 -0
- package/dist/tools/moderate.spec.d.ts +5 -0
- package/dist/tools/publish.d.ts +11 -3
- package/dist/tools/query-memory.d.ts +11 -2
- package/dist/tools/query-space.d.ts +4 -1
- package/dist/tools/retract.d.ts +29 -0
- package/dist/tools/revise.d.ts +45 -0
- package/dist/tools/revise.spec.d.ts +8 -0
- package/dist/tools/search-memory.d.ts +8 -1
- package/dist/tools/search-relationship.d.ts +10 -2
- package/dist/tools/search-space.d.ts +25 -5
- package/dist/tools/search-space.spec.d.ts +9 -0
- package/dist/tools/set-preference.d.ts +2 -1
- package/dist/tools/update-memory.d.ts +2 -1
- package/dist/tools/update-relationship.d.ts +2 -1
- package/dist/types/access-result.d.ts +48 -0
- package/dist/types/access-result.spec.d.ts +2 -0
- package/dist/types/auth.d.ts +46 -0
- package/dist/types/ghost-config.d.ts +36 -0
- package/dist/types/memory.d.ts +11 -1
- package/dist/types/preferences.d.ts +1 -1
- package/dist/types/space-memory.d.ts +3 -0
- package/dist/utils/auth-helpers.d.ts +14 -0
- package/dist/utils/auth-helpers.spec.d.ts +2 -0
- package/dist/utils/test-data-generator.d.ts +124 -0
- package/dist/utils/test-data-generator.spec.d.ts +12 -0
- package/dist/utils/weaviate-filters.d.ts +19 -0
- package/dist/v2-performance.e2e.d.ts +17 -0
- package/dist/v2-smoke.e2e.d.ts +14 -0
- package/dist/weaviate/client.d.ts +5 -8
- package/dist/weaviate/space-schema.d.ts +2 -2
- package/docs/performance/v2-benchmarks.md +80 -0
- package/jest.e2e.config.js +14 -3
- package/package.json +1 -1
- package/scripts/.collection-recreation-state.yaml +16 -0
- package/scripts/.gitkeep +5 -0
- package/scripts/README-collection-recreation.md +224 -0
- package/scripts/README.md +51 -0
- package/scripts/backup-collections.ts +543 -0
- package/scripts/delete-collection.ts +137 -0
- package/scripts/migrate-recreate-collections.ts +578 -0
- package/scripts/migrate-v1-to-v2.ts +1094 -0
- package/scripts/package-lock.json +1113 -0
- package/scripts/package.json +27 -0
- package/src/collections/composite-ids.ts +193 -0
- package/src/collections/core-infrastructure.spec.ts +353 -0
- package/src/collections/dot-notation.ts +212 -0
- package/src/collections/tracking-arrays.ts +298 -0
- package/src/constants/content-types.ts +20 -0
- package/src/schema/v2-collections-comments.spec.ts +141 -0
- package/src/schema/v2-collections.ts +433 -0
- package/src/server-factory.ts +89 -20
- package/src/server.ts +45 -17
- package/src/services/access-control.spec.ts +383 -0
- package/src/services/access-control.ts +291 -0
- package/src/services/credentials-provider.spec.ts +22 -0
- package/src/services/credentials-provider.ts +34 -0
- package/src/services/escalation.service.spec.ts +183 -0
- package/src/services/escalation.service.ts +150 -0
- package/src/services/ghost-config.service.spec.ts +339 -0
- package/src/services/ghost-config.service.ts +219 -0
- package/src/services/space-config.service.spec.ts +102 -0
- package/src/services/space-config.service.ts +79 -0
- package/src/services/trust-enforcement.spec.ts +309 -0
- package/src/services/trust-enforcement.ts +197 -0
- package/src/services/trust-validator.spec.ts +108 -0
- package/src/services/trust-validator.ts +105 -0
- package/src/tools/confirm-publish-moderation.spec.ts +240 -0
- package/src/tools/confirm.ts +914 -116
- package/src/tools/create-memory.spec.ts +126 -0
- package/src/tools/create-memory.ts +20 -27
- package/src/tools/create-relationship.ts +30 -8
- package/src/tools/delete-memory.ts +99 -64
- package/src/tools/delete-relationship.ts +15 -6
- package/src/tools/deny.ts +8 -1
- package/src/tools/find-similar.ts +44 -6
- package/src/tools/get-preferences.ts +10 -1
- package/src/tools/ghost-config.spec.ts +180 -0
- package/src/tools/ghost-config.ts +230 -0
- package/src/tools/moderate.spec.ts +277 -0
- package/src/tools/moderate.ts +219 -0
- package/src/tools/publish.ts +99 -41
- package/src/tools/query-memory.ts +44 -9
- package/src/tools/query-space.ts +39 -4
- package/src/tools/retract.ts +292 -0
- package/src/tools/revise.spec.ts +146 -0
- package/src/tools/revise.ts +283 -0
- package/src/tools/search-memory.ts +46 -10
- package/src/tools/search-relationship.ts +30 -7
- package/src/tools/search-space.spec.ts +341 -0
- package/src/tools/search-space.ts +323 -99
- package/src/tools/set-preference.ts +10 -1
- package/src/tools/update-memory.ts +24 -5
- package/src/tools/update-relationship.ts +10 -1
- package/src/types/access-result.spec.ts +193 -0
- package/src/types/access-result.ts +62 -0
- package/src/types/auth.ts +52 -0
- package/src/types/ghost-config.ts +46 -0
- package/src/types/memory.ts +20 -1
- package/src/types/preferences.ts +2 -2
- package/src/types/space-memory.ts +5 -0
- package/src/utils/auth-helpers.spec.ts +75 -0
- package/src/utils/auth-helpers.ts +25 -0
- package/src/utils/test-data-generator.spec.ts +317 -0
- package/src/utils/test-data-generator.ts +292 -0
- package/src/utils/weaviate-filters.ts +32 -5
- package/src/v2-performance.e2e.ts +173 -0
- package/src/v2-smoke.e2e.ts +401 -0
- package/src/weaviate/client.spec.ts +5 -5
- package/src/weaviate/client.ts +55 -35
- package/src/weaviate/schema.ts +11 -239
- package/src/weaviate/space-schema.spec.ts +28 -25
- package/src/weaviate/space-schema.ts +35 -11
|
@@ -0,0 +1,309 @@
|
|
|
1
|
+
# Command: project-info
|
|
2
|
+
|
|
3
|
+
> **🤖 Agent Directive**: If you are reading this file, the command `@acp.project-info` has been invoked. Follow the steps below to execute this command.
|
|
4
|
+
|
|
5
|
+
**Namespace**: acp
|
|
6
|
+
**Version**: 1.0.0
|
|
7
|
+
**Created**: 2026-02-25
|
|
8
|
+
**Last Updated**: 2026-02-25
|
|
9
|
+
**Status**: Experimental
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
**Purpose**: Display detailed information about a specific project from the global registry
|
|
14
|
+
**Category**: Project Management
|
|
15
|
+
**Frequency**: As Needed
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
## What This Command Does
|
|
20
|
+
|
|
21
|
+
This command displays comprehensive information about a project registered in `~/.acp/projects.yaml`, including metadata, timestamps, tags, related projects, dependencies, and directory status. It provides a complete view of a project's configuration and current state.
|
|
22
|
+
|
|
23
|
+
Use this command to understand project details, check project status, view relationships with other projects, and verify project directory existence. It's particularly useful when working with multiple projects in the global workspace to quickly understand project context.
|
|
24
|
+
|
|
25
|
+
Unlike [`@acp.project-list`](acp.project-list.md:1) which shows all projects in a summary view, `@acp.project-info` focuses on a single project and displays all available metadata in detail.
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
## Prerequisites
|
|
30
|
+
|
|
31
|
+
- [ ] Global ACP infrastructure initialized (`~/.acp/` exists)
|
|
32
|
+
- [ ] Project registry exists (`~/.acp/projects.yaml`)
|
|
33
|
+
- [ ] Project is registered in the registry
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
## Steps
|
|
38
|
+
|
|
39
|
+
### 1. Validate Arguments
|
|
40
|
+
|
|
41
|
+
Check that project name is provided.
|
|
42
|
+
|
|
43
|
+
**Actions**:
|
|
44
|
+
- Verify project name argument is present
|
|
45
|
+
- Show usage if missing
|
|
46
|
+
|
|
47
|
+
**Expected Outcome**: Project name identified
|
|
48
|
+
|
|
49
|
+
### 2. Load Registry
|
|
50
|
+
|
|
51
|
+
Read the project registry file.
|
|
52
|
+
|
|
53
|
+
**Actions**:
|
|
54
|
+
- Get registry path via `get_projects_registry_path()`
|
|
55
|
+
- Check if registry file exists
|
|
56
|
+
- Parse registry with `yaml_parse()`
|
|
57
|
+
|
|
58
|
+
**Expected Outcome**: Registry loaded successfully
|
|
59
|
+
|
|
60
|
+
### 3. Validate Project Exists
|
|
61
|
+
|
|
62
|
+
Check that the project is in the registry.
|
|
63
|
+
|
|
64
|
+
**Actions**:
|
|
65
|
+
- Use `yaml_has_key()` to check for project
|
|
66
|
+
- If not found, list available projects
|
|
67
|
+
- Show helpful error message
|
|
68
|
+
|
|
69
|
+
**Expected Outcome**: Project found in registry
|
|
70
|
+
|
|
71
|
+
### 4. Extract Project Metadata
|
|
72
|
+
|
|
73
|
+
Read all project fields from registry.
|
|
74
|
+
|
|
75
|
+
**Actions**:
|
|
76
|
+
- Extract required fields: path, type, description, status, timestamps
|
|
77
|
+
- Extract optional fields: tags, related_projects, dependencies
|
|
78
|
+
- Check if project is current project (marked with ⭐)
|
|
79
|
+
|
|
80
|
+
**Expected Outcome**: All metadata extracted
|
|
81
|
+
|
|
82
|
+
### 5. Display Project Information
|
|
83
|
+
|
|
84
|
+
Format and display comprehensive project details.
|
|
85
|
+
|
|
86
|
+
**Actions**:
|
|
87
|
+
- Display project name with current indicator
|
|
88
|
+
- Show type, status, path, description
|
|
89
|
+
- Display timestamps (created, modified, accessed)
|
|
90
|
+
- Show tags (if present)
|
|
91
|
+
- Show related projects (if present)
|
|
92
|
+
- Show dependencies by package manager (npm, pip, cargo, go)
|
|
93
|
+
|
|
94
|
+
**Expected Outcome**: Complete project information displayed
|
|
95
|
+
|
|
96
|
+
### 6. Check Directory Status
|
|
97
|
+
|
|
98
|
+
Verify project directory exists and check ACP status.
|
|
99
|
+
|
|
100
|
+
**Actions**:
|
|
101
|
+
- Expand tilde in path
|
|
102
|
+
- Check if directory exists
|
|
103
|
+
- Check if AGENT.md exists (ACP project indicator)
|
|
104
|
+
- Try to read project version from progress.yaml
|
|
105
|
+
- Display status with appropriate indicators (✅/❌/⚠️)
|
|
106
|
+
|
|
107
|
+
**Expected Outcome**: Directory status reported
|
|
108
|
+
|
|
109
|
+
---
|
|
110
|
+
|
|
111
|
+
## Verification
|
|
112
|
+
|
|
113
|
+
- [ ] Script created and executable
|
|
114
|
+
- [ ] Command document created
|
|
115
|
+
- [ ] Validates project name argument
|
|
116
|
+
- [ ] Loads registry successfully
|
|
117
|
+
- [ ] Checks project exists in registry
|
|
118
|
+
- [ ] Displays all metadata fields
|
|
119
|
+
- [ ] Shows tags, related projects, dependencies (if present)
|
|
120
|
+
- [ ] Checks directory existence
|
|
121
|
+
- [ ] Detects ACP projects
|
|
122
|
+
- [ ] Handles missing projects gracefully
|
|
123
|
+
- [ ] Clear formatting with separators
|
|
124
|
+
- [ ] No syntax errors
|
|
125
|
+
|
|
126
|
+
---
|
|
127
|
+
|
|
128
|
+
## Expected Output
|
|
129
|
+
|
|
130
|
+
### Files Created
|
|
131
|
+
- `agent/scripts/acp.project-info.sh` - Shell script for displaying project info
|
|
132
|
+
- `agent/commands/acp.project-info.md` - This command documentation
|
|
133
|
+
|
|
134
|
+
### Console Output
|
|
135
|
+
```
|
|
136
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
137
|
+
|
|
138
|
+
📦 remember-mcp-server ⭐ Current
|
|
139
|
+
|
|
140
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
141
|
+
|
|
142
|
+
Type: mcp-server
|
|
143
|
+
Status: active
|
|
144
|
+
Path: ~/.acp/projects/remember-mcp-server
|
|
145
|
+
|
|
146
|
+
Description:
|
|
147
|
+
Multi-tenant memory system with vector search
|
|
148
|
+
|
|
149
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
150
|
+
|
|
151
|
+
Timestamps:
|
|
152
|
+
Created: 2026-02-20T10:00:00Z
|
|
153
|
+
Last Modified: 2026-02-23T07:00:00Z
|
|
154
|
+
Last Accessed: 2026-02-25T17:00:00Z
|
|
155
|
+
|
|
156
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
157
|
+
|
|
158
|
+
Tags:
|
|
159
|
+
- mcp
|
|
160
|
+
- memory
|
|
161
|
+
- vector-search
|
|
162
|
+
|
|
163
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
164
|
+
|
|
165
|
+
Related Projects:
|
|
166
|
+
- remember-mcp
|
|
167
|
+
|
|
168
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
169
|
+
|
|
170
|
+
Dependencies:
|
|
171
|
+
npm:
|
|
172
|
+
- weaviate-client
|
|
173
|
+
- firebase-admin
|
|
174
|
+
|
|
175
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
176
|
+
|
|
177
|
+
✅ Project directory exists
|
|
178
|
+
✅ ACP project (AGENT.md found)
|
|
179
|
+
Version: 1.0.0
|
|
180
|
+
|
|
181
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
182
|
+
```
|
|
183
|
+
|
|
184
|
+
### Status Update
|
|
185
|
+
- Project information displayed
|
|
186
|
+
- Directory status verified
|
|
187
|
+
|
|
188
|
+
---
|
|
189
|
+
|
|
190
|
+
## Examples
|
|
191
|
+
|
|
192
|
+
### Example 1: Show Current Project Info
|
|
193
|
+
|
|
194
|
+
**Context**: Want to see details about the current project
|
|
195
|
+
|
|
196
|
+
**Invocation**: `@acp.project-info remember-mcp-server`
|
|
197
|
+
|
|
198
|
+
**Result**: Displays complete project metadata including type, status, path, description, timestamps, tags, related projects, dependencies, and directory status
|
|
199
|
+
|
|
200
|
+
### Example 2: Check Project Before Switching
|
|
201
|
+
|
|
202
|
+
**Context**: Want to verify project exists before switching to it
|
|
203
|
+
|
|
204
|
+
**Invocation**: `@acp.project-info agentbase-mcp-server`
|
|
205
|
+
|
|
206
|
+
**Result**: Shows project details, confirms directory exists, shows it's an ACP project with version
|
|
207
|
+
|
|
208
|
+
### Example 3: Project Not Found
|
|
209
|
+
|
|
210
|
+
**Context**: Trying to view info for non-existent project
|
|
211
|
+
|
|
212
|
+
**Invocation**: `@acp.project-info nonexistent-project`
|
|
213
|
+
|
|
214
|
+
**Result**: Error message with list of available projects
|
|
215
|
+
|
|
216
|
+
### Example 4: Project Directory Missing
|
|
217
|
+
|
|
218
|
+
**Context**: Project in registry but directory deleted
|
|
219
|
+
|
|
220
|
+
**Invocation**: `@acp.project-info old-project`
|
|
221
|
+
|
|
222
|
+
**Result**: Shows metadata but warns that directory doesn't exist
|
|
223
|
+
|
|
224
|
+
---
|
|
225
|
+
|
|
226
|
+
## Related Commands
|
|
227
|
+
|
|
228
|
+
- [`@acp.project-list`](acp.project-list.md) - List all projects in registry
|
|
229
|
+
- [`@acp.project-set`](acp.project-set.md) - Switch to a project
|
|
230
|
+
- [`@acp.project-update`](acp.project-update.md) - Update project metadata
|
|
231
|
+
- [`@acp.projects-sync`](acp.projects-sync.md) - Sync registry with filesystem
|
|
232
|
+
|
|
233
|
+
---
|
|
234
|
+
|
|
235
|
+
## Troubleshooting
|
|
236
|
+
|
|
237
|
+
### Issue 1: Registry not found
|
|
238
|
+
|
|
239
|
+
**Symptom**: Error "Project registry not found"
|
|
240
|
+
|
|
241
|
+
**Cause**: `~/.acp/projects.yaml` doesn't exist
|
|
242
|
+
|
|
243
|
+
**Solution**: Create a project with `@acp.project-create` to initialize the registry
|
|
244
|
+
|
|
245
|
+
### Issue 2: Project not found
|
|
246
|
+
|
|
247
|
+
**Symptom**: Error "Project 'name' not found in registry"
|
|
248
|
+
|
|
249
|
+
**Cause**: Project not registered or wrong name
|
|
250
|
+
|
|
251
|
+
**Solution**: Run `@acp.project-list` to see available projects, or use `@acp.projects-sync` to discover unregistered projects
|
|
252
|
+
|
|
253
|
+
### Issue 3: Directory not found
|
|
254
|
+
|
|
255
|
+
**Symptom**: Warning "Project directory not found"
|
|
256
|
+
|
|
257
|
+
**Cause**: Project directory was moved or deleted
|
|
258
|
+
|
|
259
|
+
**Solution**: Either restore the directory, update the path with `@acp.project-update`, or remove the project with `@acp.project-remove`
|
|
260
|
+
|
|
261
|
+
### Issue 4: No metadata displayed
|
|
262
|
+
|
|
263
|
+
**Symptom**: Some fields show as empty or "null"
|
|
264
|
+
|
|
265
|
+
**Cause**: Optional fields not set in registry
|
|
266
|
+
|
|
267
|
+
**Solution**: This is normal for optional fields (tags, related_projects, dependencies). Use `@acp.project-update` to add metadata.
|
|
268
|
+
|
|
269
|
+
---
|
|
270
|
+
|
|
271
|
+
## Security Considerations
|
|
272
|
+
|
|
273
|
+
### File Access
|
|
274
|
+
- **Reads**: `~/.acp/projects.yaml` (project registry), project directory for AGENT.md and progress.yaml
|
|
275
|
+
- **Writes**: None (read-only command)
|
|
276
|
+
- **Executes**: None
|
|
277
|
+
|
|
278
|
+
### Network Access
|
|
279
|
+
- **APIs**: None
|
|
280
|
+
- **Repositories**: None
|
|
281
|
+
|
|
282
|
+
### Sensitive Data
|
|
283
|
+
- **Secrets**: Does not access any secrets or credentials
|
|
284
|
+
- **Credentials**: Does not access credentials
|
|
285
|
+
|
|
286
|
+
---
|
|
287
|
+
|
|
288
|
+
## Notes
|
|
289
|
+
|
|
290
|
+
- This is a read-only command - it doesn't modify the registry
|
|
291
|
+
- Expands tilde (~) in project paths automatically
|
|
292
|
+
- Checks if project directory exists on filesystem
|
|
293
|
+
- Detects ACP projects by presence of AGENT.md
|
|
294
|
+
- Tries to read project version from progress.yaml
|
|
295
|
+
- Shows current project indicator (⭐) if applicable
|
|
296
|
+
- Handles missing optional fields gracefully
|
|
297
|
+
- Part of Milestone 7 (Global ACP Project Registry)
|
|
298
|
+
- Marked as Experimental until M7 is complete
|
|
299
|
+
|
|
300
|
+
---
|
|
301
|
+
|
|
302
|
+
**Namespace**: acp
|
|
303
|
+
**Command**: project-info
|
|
304
|
+
**Version**: 1.0.0
|
|
305
|
+
**Created**: 2026-02-25
|
|
306
|
+
**Last Updated**: 2026-02-25
|
|
307
|
+
**Status**: Experimental
|
|
308
|
+
**Compatibility**: ACP 4.1.1+
|
|
309
|
+
**Author**: ACP Project
|