-
Notifications
You must be signed in to change notification settings - Fork 33
feat(aidd-product-manager): prefer PageSpace DOCUMENT pages for planning artifacts #215
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -100,10 +100,13 @@ CrudOperations { | |
| } | ||
|
|
||
| FileLocations { | ||
| Story maps and user journeys are saved to $projectRoot/plan/story-map/ as YAML files | ||
| Story map file: $projectRoot/plan/story-map/story-map.yaml | ||
| User journey files: $projectRoot/plan/story-map/${journey-name}.yaml | ||
| Personas: $projectRoot/plan/story-map/personas.yaml | ||
| Pagespace available => create pages/documents in the project's Pagespace drive (preferred) | ||
| Story map, user journeys, and personas as DOCUMENT pages | ||
| Use list_pages to find an existing planning folder or create one | ||
| No Pagespace => save to $projectRoot/plan/story-map/ as YAML files | ||
|
Comment on lines
+103
to
+106
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
When PageSpace is available and the user invokes Useful? React with 👍 / 👎. |
||
| Story map file: $projectRoot/plan/story-map/story-map.yaml | ||
| User journey files: $projectRoot/plan/story-map/${journey-name}.yaml | ||
| Personas: $projectRoot/plan/story-map/personas.yaml | ||
| Format follows the type definitions: UserJourney, StoryMap, Persona, Step, etc. | ||
| } | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When PageSpace is connected, this branch replaces the filesystem output instead of supplementing it, so the documented
/discover→/user-test journey.yamlworkflow can no longer find its input.ai/skills/aidd-user-testing/SKILL.md:121-128explicitly reads journeys from$projectRoot/plan/story-map/${journey-name}.yaml; either continue writing those YAML files or update the consumer to load DOCUMENT pages before making PageSpace the preferred destination.Useful? React with 👍 / 👎.