@nextsparkjs/ai-workflow 0.1.0-beta.100
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/LICENSE +21 -0
- package/README.md +115 -0
- package/claude/_docs/workflows-optimizations.md +359 -0
- package/claude/agents/api-tester.md +634 -0
- package/claude/agents/architecture-supervisor.md +1351 -0
- package/claude/agents/backend-developer.md +997 -0
- package/claude/agents/backend-validator.md +417 -0
- package/claude/agents/bdd-docs-writer.md +737 -0
- package/claude/agents/block-developer.md +677 -0
- package/claude/agents/code-reviewer.md +1432 -0
- package/claude/agents/db-developer.md +721 -0
- package/claude/agents/db-validator.md +407 -0
- package/claude/agents/demo-video-generator.md +493 -0
- package/claude/agents/documentation-writer.md +1268 -0
- package/claude/agents/frontend-developer.md +1234 -0
- package/claude/agents/frontend-validator.md +777 -0
- package/claude/agents/functional-validator.md +630 -0
- package/claude/agents/mock-analyst.md +387 -0
- package/claude/agents/product-manager.md +963 -0
- package/claude/agents/qa-automation.md +1762 -0
- package/claude/agents/release-manager.md +634 -0
- package/claude/agents/selectors-translator.md +262 -0
- package/claude/agents/unit-test-writer.md +785 -0
- package/claude/agents/visual-comparator.md +329 -0
- package/claude/agents/workflow-maintainer.md +352 -0
- package/claude/commands/do/README.md +88 -0
- package/claude/commands/do/create-api.md +64 -0
- package/claude/commands/do/create-entity.md +66 -0
- package/claude/commands/do/create-migration.md +64 -0
- package/claude/commands/do/create-plugin.md +56 -0
- package/claude/commands/do/create-theme.md +70 -0
- package/claude/commands/do/mock-data.md +67 -0
- package/claude/commands/do/reset-db.md +71 -0
- package/claude/commands/do/setup-scheduled-action.md +75 -0
- package/claude/commands/do/sync-code-review.md +117 -0
- package/claude/commands/do/update-selectors.md +112 -0
- package/claude/commands/do/use-skills.md +90 -0
- package/claude/commands/do/validate-blocks.md +69 -0
- package/claude/commands/how-to/README.md +261 -0
- package/claude/commands/how-to/add-metadata.md +692 -0
- package/claude/commands/how-to/add-taxonomies.md +806 -0
- package/claude/commands/how-to/add-translations.md +571 -0
- package/claude/commands/how-to/create-api.md +577 -0
- package/claude/commands/how-to/create-block.md +575 -0
- package/claude/commands/how-to/create-child-entities.md +771 -0
- package/claude/commands/how-to/create-entity.md +597 -0
- package/claude/commands/how-to/create-migrations.md +605 -0
- package/claude/commands/how-to/create-plugin.md +654 -0
- package/claude/commands/how-to/customize-app.md +481 -0
- package/claude/commands/how-to/customize-dashboard.md +553 -0
- package/claude/commands/how-to/customize-theme.md +438 -0
- package/claude/commands/how-to/define-features-flows.md +632 -0
- package/claude/commands/how-to/deploy.md +507 -0
- package/claude/commands/how-to/handle-file-uploads.md +746 -0
- package/claude/commands/how-to/implement-search.md +1001 -0
- package/claude/commands/how-to/install-plugins.md +352 -0
- package/claude/commands/how-to/manage-test-coverage.md +984 -0
- package/claude/commands/how-to/run-tests.md +400 -0
- package/claude/commands/how-to/set-app-languages.md +601 -0
- package/claude/commands/how-to/set-plans-and-permissions.md +575 -0
- package/claude/commands/how-to/set-scheduled-actions.md +527 -0
- package/claude/commands/how-to/set-user-roles-and-permissions.md +550 -0
- package/claude/commands/how-to/setup-authentication.md +388 -0
- package/claude/commands/how-to/setup-claude-code.md +440 -0
- package/claude/commands/how-to/setup-database.md +274 -0
- package/claude/commands/how-to/setup-email-providers.md +598 -0
- package/claude/commands/how-to/setup-mobile-dev.md +627 -0
- package/claude/commands/how-to/start.md +500 -0
- package/claude/commands/how-to/use-devtools.md +639 -0
- package/claude/commands/how-to/use-superadmin.md +622 -0
- package/claude/commands/session/README.md +193 -0
- package/claude/commands/session/block-create.md +190 -0
- package/claude/commands/session/block-list.md +203 -0
- package/claude/commands/session/block-update.md +192 -0
- package/claude/commands/session/block-validate.md +218 -0
- package/claude/commands/session/changelog.md +115 -0
- package/claude/commands/session/close.md +225 -0
- package/claude/commands/session/commit.md +174 -0
- package/claude/commands/session/db-entity.md +206 -0
- package/claude/commands/session/db-fix.md +212 -0
- package/claude/commands/session/db-sample.md +206 -0
- package/claude/commands/session/demo.md +178 -0
- package/claude/commands/session/doc-bdd.md +207 -0
- package/claude/commands/session/doc-feature.md +218 -0
- package/claude/commands/session/doc-read.md +225 -0
- package/claude/commands/session/execute.md +204 -0
- package/claude/commands/session/explain.md +202 -0
- package/claude/commands/session/fix-bug.md +210 -0
- package/claude/commands/session/fix-build.md +182 -0
- package/claude/commands/session/fix-test.md +189 -0
- package/claude/commands/session/pending.md +232 -0
- package/claude/commands/session/refine.md +188 -0
- package/claude/commands/session/resume.md +192 -0
- package/claude/commands/session/review.md +192 -0
- package/claude/commands/session/scope-change.md +181 -0
- package/claude/commands/session/start-blocks.md +347 -0
- package/claude/commands/session/start.md +604 -0
- package/claude/commands/session/status.md +169 -0
- package/claude/commands/session/test-fix.md +221 -0
- package/claude/commands/session/test-run.md +203 -0
- package/claude/commands/session/test-write.md +242 -0
- package/claude/commands/session/validate.md +162 -0
- package/claude/config/context.json +40 -0
- package/claude/config/github.json +69 -0
- package/claude/config/github.schema.json +106 -0
- package/claude/config/team.json +46 -0
- package/claude/config/team.schema.json +106 -0
- package/claude/config/workspace.json +43 -0
- package/claude/config/workspace.schema.json +75 -0
- package/claude/skills/README.md +228 -0
- package/claude/skills/accessibility/SKILL.md +573 -0
- package/claude/skills/api-bypass-layers/SKILL.md +550 -0
- package/claude/skills/asana-integration/SKILL.md +499 -0
- package/claude/skills/better-auth/SKILL.md +666 -0
- package/claude/skills/billing-subscriptions/SKILL.md +660 -0
- package/claude/skills/block-decision-matrix/SKILL.md +359 -0
- package/claude/skills/clickup-integration/SKILL.md +434 -0
- package/claude/skills/core-theme-responsibilities/SKILL.md +485 -0
- package/claude/skills/create-plugin/SKILL.md +425 -0
- package/claude/skills/create-theme/SKILL.md +331 -0
- package/claude/skills/cypress-api/SKILL.md +511 -0
- package/claude/skills/cypress-api/scripts/generate-api-controller.py +329 -0
- package/claude/skills/cypress-api/scripts/generate-api-test.py +930 -0
- package/claude/skills/cypress-e2e/SKILL.md +526 -0
- package/claude/skills/cypress-e2e/scripts/extract-selectors.py +383 -0
- package/claude/skills/cypress-e2e/scripts/generate-uat-test.py +788 -0
- package/claude/skills/cypress-selectors/SKILL.md +309 -0
- package/claude/skills/cypress-selectors/scripts/extract-missing.py +243 -0
- package/claude/skills/cypress-selectors/scripts/generate-block-selectors.py +283 -0
- package/claude/skills/cypress-selectors/scripts/validate-selectors.py +145 -0
- package/claude/skills/database-migrations/SKILL.md +335 -0
- package/claude/skills/database-migrations/scripts/generate-sample-data.py +284 -0
- package/claude/skills/database-migrations/scripts/validate-migration.py +323 -0
- package/claude/skills/design-system/SKILL.md +682 -0
- package/claude/skills/documentation/SKILL.md +540 -0
- package/claude/skills/entity-api/SKILL.md +482 -0
- package/claude/skills/entity-system/SKILL.md +635 -0
- package/claude/skills/entity-system/scripts/generate-child-migration.py +298 -0
- package/claude/skills/entity-system/scripts/generate-metas-migration.py +233 -0
- package/claude/skills/entity-system/scripts/generate-migration.py +382 -0
- package/claude/skills/entity-system/scripts/generate-sample-data.py +418 -0
- package/claude/skills/entity-system/scripts/scaffold-entity.py +661 -0
- package/claude/skills/github/SKILL.md +467 -0
- package/claude/skills/i18n-nextintl/SKILL.md +302 -0
- package/claude/skills/i18n-nextintl/scripts/add-translation.py +243 -0
- package/claude/skills/i18n-nextintl/scripts/extract-hardcoded.py +246 -0
- package/claude/skills/i18n-nextintl/scripts/validate-translations.py +260 -0
- package/claude/skills/impact-analysis/SKILL.md +203 -0
- package/claude/skills/jest-unit/SKILL.md +306 -0
- package/claude/skills/jest-unit/references/component-testing.md +371 -0
- package/claude/skills/jest-unit/references/mocking-patterns.md +380 -0
- package/claude/skills/jest-unit/references/service-hook-testing.md +454 -0
- package/claude/skills/jira-integration/SKILL.md +539 -0
- package/claude/skills/media-library/SKILL.md +743 -0
- package/claude/skills/mock-analysis/SKILL.md +276 -0
- package/claude/skills/monorepo-architecture/SKILL.md +162 -0
- package/claude/skills/nextjs-api-development/SKILL.md +364 -0
- package/claude/skills/nextjs-api-development/scripts/generate-crud-tests.py +456 -0
- package/claude/skills/nextjs-api-development/scripts/scaffold-endpoint.py +481 -0
- package/claude/skills/nextjs-api-development/scripts/validate-api.py +283 -0
- package/claude/skills/notion-integration/SKILL.md +641 -0
- package/claude/skills/npm-development-workflow/SKILL.md +480 -0
- package/claude/skills/page-builder-blocks/SKILL.md +530 -0
- package/claude/skills/page-builder-blocks/scripts/scaffold-block.py +444 -0
- package/claude/skills/permissions-system/SKILL.md +619 -0
- package/claude/skills/plugins/SKILL.md +340 -0
- package/claude/skills/plugins/references/plugin-templates.md +414 -0
- package/claude/skills/plugins/references/plugin-testing.md +353 -0
- package/claude/skills/plugins/references/plugin-types.md +198 -0
- package/claude/skills/plugins/scripts/scaffold-plugin.py +443 -0
- package/claude/skills/pom-patterns/SKILL.md +452 -0
- package/claude/skills/pom-patterns/scripts/generate-pom.py +392 -0
- package/claude/skills/rate-limiting/SKILL.md +342 -0
- package/claude/skills/react-best-practices/AGENTS.md +2410 -0
- package/claude/skills/react-best-practices/README.md +123 -0
- package/claude/skills/react-best-practices/SKILL.md +125 -0
- package/claude/skills/react-best-practices/metadata.json +15 -0
- package/claude/skills/react-best-practices/rules/_sections.md +46 -0
- package/claude/skills/react-best-practices/rules/_template.md +28 -0
- package/claude/skills/react-best-practices/rules/advanced-event-handler-refs.md +55 -0
- package/claude/skills/react-best-practices/rules/advanced-use-latest.md +49 -0
- package/claude/skills/react-best-practices/rules/async-api-routes.md +38 -0
- package/claude/skills/react-best-practices/rules/async-defer-await.md +80 -0
- package/claude/skills/react-best-practices/rules/async-dependencies.md +36 -0
- package/claude/skills/react-best-practices/rules/async-parallel.md +28 -0
- package/claude/skills/react-best-practices/rules/async-suspense-boundaries.md +99 -0
- package/claude/skills/react-best-practices/rules/bundle-barrel-imports.md +59 -0
- package/claude/skills/react-best-practices/rules/bundle-conditional.md +31 -0
- package/claude/skills/react-best-practices/rules/bundle-defer-third-party.md +49 -0
- package/claude/skills/react-best-practices/rules/bundle-dynamic-imports.md +35 -0
- package/claude/skills/react-best-practices/rules/bundle-preload.md +50 -0
- package/claude/skills/react-best-practices/rules/client-event-listeners.md +74 -0
- package/claude/skills/react-best-practices/rules/client-localstorage-schema.md +71 -0
- package/claude/skills/react-best-practices/rules/client-passive-event-listeners.md +48 -0
- package/claude/skills/react-best-practices/rules/client-swr-dedup.md +56 -0
- package/claude/skills/react-best-practices/rules/js-batch-dom-css.md +82 -0
- package/claude/skills/react-best-practices/rules/js-cache-function-results.md +80 -0
- package/claude/skills/react-best-practices/rules/js-cache-property-access.md +28 -0
- package/claude/skills/react-best-practices/rules/js-cache-storage.md +70 -0
- package/claude/skills/react-best-practices/rules/js-combine-iterations.md +32 -0
- package/claude/skills/react-best-practices/rules/js-early-exit.md +50 -0
- package/claude/skills/react-best-practices/rules/js-hoist-regexp.md +45 -0
- package/claude/skills/react-best-practices/rules/js-index-maps.md +37 -0
- package/claude/skills/react-best-practices/rules/js-length-check-first.md +49 -0
- package/claude/skills/react-best-practices/rules/js-min-max-loop.md +82 -0
- package/claude/skills/react-best-practices/rules/js-set-map-lookups.md +24 -0
- package/claude/skills/react-best-practices/rules/js-tosorted-immutable.md +57 -0
- package/claude/skills/react-best-practices/rules/rendering-activity.md +26 -0
- package/claude/skills/react-best-practices/rules/rendering-animate-svg-wrapper.md +47 -0
- package/claude/skills/react-best-practices/rules/rendering-conditional-render.md +40 -0
- package/claude/skills/react-best-practices/rules/rendering-content-visibility.md +38 -0
- package/claude/skills/react-best-practices/rules/rendering-hoist-jsx.md +46 -0
- package/claude/skills/react-best-practices/rules/rendering-hydration-no-flicker.md +82 -0
- package/claude/skills/react-best-practices/rules/rendering-svg-precision.md +28 -0
- package/claude/skills/react-best-practices/rules/rerender-defer-reads.md +39 -0
- package/claude/skills/react-best-practices/rules/rerender-dependencies.md +45 -0
- package/claude/skills/react-best-practices/rules/rerender-derived-state.md +29 -0
- package/claude/skills/react-best-practices/rules/rerender-functional-setstate.md +74 -0
- package/claude/skills/react-best-practices/rules/rerender-lazy-state-init.md +58 -0
- package/claude/skills/react-best-practices/rules/rerender-memo.md +44 -0
- package/claude/skills/react-best-practices/rules/rerender-transitions.md +40 -0
- package/claude/skills/react-best-practices/rules/server-after-nonblocking.md +73 -0
- package/claude/skills/react-best-practices/rules/server-cache-lru.md +41 -0
- package/claude/skills/react-best-practices/rules/server-cache-react.md +76 -0
- package/claude/skills/react-best-practices/rules/server-parallel-fetching.md +83 -0
- package/claude/skills/react-best-practices/rules/server-serialization.md +38 -0
- package/claude/skills/react-patterns/SKILL.md +688 -0
- package/claude/skills/registry-system/SKILL.md +331 -0
- package/claude/skills/scheduled-actions/SKILL.md +671 -0
- package/claude/skills/scope-enforcement/SKILL.md +542 -0
- package/claude/skills/scope-enforcement/scripts/validate-scope.py +357 -0
- package/claude/skills/server-actions/SKILL.md +493 -0
- package/claude/skills/service-layer/SKILL.md +587 -0
- package/claude/skills/session-management/SKILL.md +266 -0
- package/claude/skills/session-management/scripts/create-session.py +166 -0
- package/claude/skills/session-management/scripts/iteration-close.sh +105 -0
- package/claude/skills/session-management/scripts/iteration-init.sh +180 -0
- package/claude/skills/session-management/scripts/session-archive.sh +87 -0
- package/claude/skills/session-management/scripts/session-close.sh +133 -0
- package/claude/skills/session-management/scripts/session-init.sh +225 -0
- package/claude/skills/session-management/scripts/session-list.sh +163 -0
- package/claude/skills/session-management/scripts/split-plan.sh +116 -0
- package/claude/skills/shadcn-components/SKILL.md +586 -0
- package/claude/skills/shadcn-theming/SKILL.md +446 -0
- package/claude/skills/suspense-loading/SKILL.md +280 -0
- package/claude/skills/tailwind-theming/SKILL.md +507 -0
- package/claude/skills/tanstack-query/SKILL.md +608 -0
- package/claude/skills/test-coverage/SKILL.md +239 -0
- package/claude/skills/web-design-guidelines/SKILL.md +39 -0
- package/claude/skills/zod-validation/SKILL.md +537 -0
- package/claude/templates/blocks/progress.md +86 -0
- package/claude/templates/iteration/changes.md +61 -0
- package/claude/templates/iteration/progress.md +55 -0
- package/claude/templates/log.md +31 -0
- package/claude/templates/story/context.md +77 -0
- package/claude/templates/story/pendings.md +37 -0
- package/claude/templates/story/plan.md +299 -0
- package/claude/templates/story/requirements.md +109 -0
- package/claude/templates/story/scope.json +10 -0
- package/claude/templates/story/tests.md +91 -0
- package/claude/templates/task/progress.md +58 -0
- package/claude/templates/task/requirements.md +54 -0
- package/claude/workflows/README.md +154 -0
- package/claude/workflows/blocks.md +614 -0
- package/claude/workflows/story.md +1207 -0
- package/claude/workflows/task.md +927 -0
- package/claude/workflows/tweak.md +527 -0
- package/cursor/.gitkeep +0 -0
- package/package.json +35 -0
- package/scripts/postinstall.mjs +198 -0
- package/scripts/setup.mjs +282 -0
- package/scripts/sync.mjs +209 -0
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# Progress: Iteration {{ITERATION}}-{{ITERATION_NAME}}
|
|
2
|
+
|
|
3
|
+
**Session:** {{SESSION_FULL}}
|
|
4
|
+
**Iteration:** {{ITERATION}}-{{ITERATION_NAME}}
|
|
5
|
+
**Started:** {{DATE}}
|
|
6
|
+
**Status:** Active
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## Current Phase
|
|
11
|
+
|
|
12
|
+
**Phase:** [DB / Backend / Frontend / QA / Review]
|
|
13
|
+
**Agent:** [agent-name]
|
|
14
|
+
**Status:** [Not Started / In Progress / Completed]
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## Phases Completed
|
|
19
|
+
|
|
20
|
+
| Phase | Agent | Status | Notes |
|
|
21
|
+
|-------|-------|--------|-------|
|
|
22
|
+
| 1. Database | db-developer | [ ] | |
|
|
23
|
+
| 2. DB Validation | db-validator | [ ] | |
|
|
24
|
+
| 3. Backend | backend-developer | [ ] | |
|
|
25
|
+
| 4. Backend Validation | backend-validator | [ ] | |
|
|
26
|
+
| 5. API Tests | api-tester | [ ] | |
|
|
27
|
+
| 6. Frontend | frontend-developer | [ ] | |
|
|
28
|
+
| 7. Frontend Validation | frontend-validator | [ ] | |
|
|
29
|
+
| 8. Functional Validation | functional-validator | [ ] | |
|
|
30
|
+
| 9. QA Manual | Claude (orchestrator) | [ ] | |
|
|
31
|
+
| 10. QA Automation | qa-automation | [ ] | |
|
|
32
|
+
| 11. Code Review | code-reviewer | [ ] | |
|
|
33
|
+
| 12. Unit Tests | unit-test-writer | [ ] | |
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
## Blockers
|
|
38
|
+
|
|
39
|
+
- [ ] [Blocker description] - Status: [Pending / Resolved]
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
43
|
+
## Decisions This Iteration
|
|
44
|
+
|
|
45
|
+
- [Decision]: [Rationale]
|
|
46
|
+
|
|
47
|
+
---
|
|
48
|
+
|
|
49
|
+
## Notes
|
|
50
|
+
|
|
51
|
+
[Additional context for this iteration]
|
|
52
|
+
|
|
53
|
+
---
|
|
54
|
+
|
|
55
|
+
**Last Updated:** {{DATE}}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Quick Fix: {{SESSION_NAME}}
|
|
2
|
+
|
|
3
|
+
**Date:** {{DATE}}
|
|
4
|
+
**Type:** quick-fix
|
|
5
|
+
**T-Shirt Size:** {{TSHIRT}}
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## What was done
|
|
10
|
+
|
|
11
|
+
[Description of the change]
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## Files changed
|
|
16
|
+
|
|
17
|
+
- `path/to/file.ts` - [What changed]
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## Verification
|
|
22
|
+
|
|
23
|
+
- [ ] Visual check
|
|
24
|
+
- [ ] Build passes
|
|
25
|
+
- [ ] Tests pass (if applicable)
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
## Notes
|
|
30
|
+
|
|
31
|
+
[Any additional context]
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
# Context: {{SESSION_NAME}}
|
|
2
|
+
|
|
3
|
+
**Session:** `.claude/sessions/stories/{{SESSION_FULL}}/`
|
|
4
|
+
**Type:** Story (COMPLETE workflow)
|
|
5
|
+
**T-Shirt Size:** {{TSHIRT}}
|
|
6
|
+
**Created:** {{DATE}}
|
|
7
|
+
**ClickUp Task:** {{CLICKUP_URL}}
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## Overview
|
|
12
|
+
|
|
13
|
+
[Brief description of the feature/project]
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## Risk Assessment
|
|
18
|
+
|
|
19
|
+
**Technical Risk:** [Low / Medium / High]
|
|
20
|
+
- Archivos afectados: [número estimado]
|
|
21
|
+
- Capas: [DB / API / UI]
|
|
22
|
+
- Tests existentes: [Sí / No / Parcial]
|
|
23
|
+
|
|
24
|
+
**Business Risk:** [Low / Medium / High / Critical]
|
|
25
|
+
- ¿Toca flujos críticos?: [Sí / No]
|
|
26
|
+
- ¿Afecta revenue?: [Directo / Indirecto / No]
|
|
27
|
+
- ¿Es reversible?: [Sí / No]
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
## Dependencies
|
|
32
|
+
|
|
33
|
+
**Requires:**
|
|
34
|
+
- [Existing entities, services, or features this depends on]
|
|
35
|
+
|
|
36
|
+
**Blocks:**
|
|
37
|
+
- [Future features that depend on this]
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## Stakeholders
|
|
42
|
+
|
|
43
|
+
- **PM:** @{{USER_NAME}}
|
|
44
|
+
- **Dev:** Claude
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
|
|
48
|
+
## Key Decisions
|
|
49
|
+
|
|
50
|
+
[Document significant architectural or technical decisions made during this story]
|
|
51
|
+
|
|
52
|
+
1. **[Decision Title]:** [What was decided and why]
|
|
53
|
+
|
|
54
|
+
---
|
|
55
|
+
|
|
56
|
+
## Log de Coordinación
|
|
57
|
+
|
|
58
|
+
### {{DATE}} - session:start
|
|
59
|
+
|
|
60
|
+
**Estado:** Sesión iniciada
|
|
61
|
+
|
|
62
|
+
**Información:**
|
|
63
|
+
- T-Shirt Size: {{TSHIRT}}
|
|
64
|
+
- Workflow: COMPLETE
|
|
65
|
+
- Iteration: 01-initial
|
|
66
|
+
|
|
67
|
+
---
|
|
68
|
+
|
|
69
|
+
## Iteration History
|
|
70
|
+
|
|
71
|
+
| # | Name | Status | Started | Closed | Reason |
|
|
72
|
+
|---|------|--------|---------|--------|--------|
|
|
73
|
+
| 01 | initial | active | {{DATE}} | - | - |
|
|
74
|
+
|
|
75
|
+
---
|
|
76
|
+
|
|
77
|
+
**Last Updated:** {{DATE}} by session:start
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# Pendings: {{SESSION_NAME}}
|
|
2
|
+
|
|
3
|
+
**Session:** `.claude/sessions/stories/{{SESSION_FULL}}/`
|
|
4
|
+
**Last Updated:** {{DATE}}
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## Pending Items
|
|
9
|
+
|
|
10
|
+
Items discovered during development that are out of scope for current iteration but should be addressed.
|
|
11
|
+
|
|
12
|
+
### High Priority
|
|
13
|
+
- [ ] [Item description] - Discovered in: [Phase/Agent]
|
|
14
|
+
|
|
15
|
+
### Medium Priority
|
|
16
|
+
- [ ] [Item description] - Discovered in: [Phase/Agent]
|
|
17
|
+
|
|
18
|
+
### Low Priority / Nice to Have
|
|
19
|
+
- [ ] [Item description] - Discovered in: [Phase/Agent]
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
## Technical Debt
|
|
24
|
+
|
|
25
|
+
- [ ] [Debt item] - Impact: [Low/Med/High]
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
## Future Improvements
|
|
30
|
+
|
|
31
|
+
- [ ] [Improvement idea] - Value: [Low/Med/High]
|
|
32
|
+
|
|
33
|
+
---
|
|
34
|
+
|
|
35
|
+
## Notes
|
|
36
|
+
|
|
37
|
+
[Additional context about pending items]
|
|
@@ -0,0 +1,299 @@
|
|
|
1
|
+
# Technical Plan: {{SESSION_NAME}}
|
|
2
|
+
|
|
3
|
+
**Session:** `.claude/sessions/stories/{{SESSION_FULL}}/`
|
|
4
|
+
**Created:** {{DATE}}
|
|
5
|
+
**T-Shirt Size:** {{TSHIRT}}
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Executive Summary
|
|
10
|
+
|
|
11
|
+
[2-3 sentences summarizing what will be built and how]
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## Architecture Decision
|
|
16
|
+
|
|
17
|
+
### Location Decision
|
|
18
|
+
- **Core:** [What goes in core/]
|
|
19
|
+
- **Theme:** [What goes in theme/]
|
|
20
|
+
- **Plugin:** [What goes in plugins/ - if any]
|
|
21
|
+
|
|
22
|
+
### Rationale
|
|
23
|
+
[Why this distribution was chosen]
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
## Relevant ACs (from requirements.md)
|
|
28
|
+
|
|
29
|
+
[Extract and list the ACs that will be implemented. Reference for phase sections below.]
|
|
30
|
+
|
|
31
|
+
- **AC1:** [Description]
|
|
32
|
+
- **AC2:** [Description]
|
|
33
|
+
- **AC3:** [Description]
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
## Token Optimization
|
|
38
|
+
|
|
39
|
+
This plan uses phase markers for token optimization. After creating this plan, run:
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
./skills/session-management/scripts/split-plan.sh stories/{{SESSION_FULL}}/
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
Each phase section below will be extracted into `phases/phase-XX-name.md` for agent consumption.
|
|
46
|
+
|
|
47
|
+
---
|
|
48
|
+
|
|
49
|
+
## Implementation Phases
|
|
50
|
+
|
|
51
|
+
<!-- PHASE:03:START -->
|
|
52
|
+
## Phase 3: DB Entity Developer
|
|
53
|
+
|
|
54
|
+
### Objective
|
|
55
|
+
Create database migrations and entity configuration files.
|
|
56
|
+
|
|
57
|
+
### Relevant ACs
|
|
58
|
+
- AC1: [Extracted from requirements.md]
|
|
59
|
+
- AC2: [Only ACs relevant to this phase]
|
|
60
|
+
|
|
61
|
+
### Prerequisites
|
|
62
|
+
- None (first development phase)
|
|
63
|
+
|
|
64
|
+
### Files to Create/Modify
|
|
65
|
+
- `migrations/0XX_{{SESSION_NAME}}.sql` - Main table with indexes
|
|
66
|
+
- `migrations/0XX_{{SESSION_NAME}}_sample.sql` - Sample data (20+ records)
|
|
67
|
+
- `core/entities/{{entity}}/{{entity}}.config.ts` - Entity configuration
|
|
68
|
+
- `core/entities/{{entity}}/{{entity}}.fields.ts` - Field definitions
|
|
69
|
+
- `core/entities/{{entity}}/{{entity}}.types.ts` - TypeScript types
|
|
70
|
+
- `core/entities/{{entity}}/{{entity}}.service.ts` - Service layer
|
|
71
|
+
|
|
72
|
+
### Implementation Notes
|
|
73
|
+
- Use TIMESTAMPTZ for all date fields
|
|
74
|
+
- All field names must use camelCase (NOT snake_case)
|
|
75
|
+
- Include RLS policies for team isolation
|
|
76
|
+
- Sample data should be varied and realistic
|
|
77
|
+
<!-- PHASE:03:END -->
|
|
78
|
+
|
|
79
|
+
<!-- PHASE:05:START -->
|
|
80
|
+
## Phase 5: Backend Developer
|
|
81
|
+
|
|
82
|
+
### Objective
|
|
83
|
+
Implement API routes using TDD approach (tests first).
|
|
84
|
+
|
|
85
|
+
### Relevant ACs
|
|
86
|
+
- ACn: [Extracted from requirements.md]
|
|
87
|
+
- ACm: [Only ACs relevant to API endpoints]
|
|
88
|
+
|
|
89
|
+
### Prerequisites
|
|
90
|
+
- Phase 3 complete (migrations executed, entity files exist)
|
|
91
|
+
- Tables exist in database
|
|
92
|
+
|
|
93
|
+
### Files to Create/Modify
|
|
94
|
+
- `app/api/v1/{{entity}}/route.ts` - CRUD endpoints
|
|
95
|
+
- `core/validation/{{entity}}.ts` - Zod schemas
|
|
96
|
+
- `__tests__/api/{{entity}}.test.ts` - Jest tests (TDD)
|
|
97
|
+
|
|
98
|
+
### Implementation Notes
|
|
99
|
+
- Write tests FIRST (RED), then implement (GREEN), then refactor
|
|
100
|
+
- Implement dual authentication (session + API key)
|
|
101
|
+
- Follow existing API patterns (see similar entities)
|
|
102
|
+
- Target: 70%+ coverage
|
|
103
|
+
<!-- PHASE:05:END -->
|
|
104
|
+
|
|
105
|
+
<!-- PHASE:07:START -->
|
|
106
|
+
## Phase 7: Mock Analyzer (CONDITIONAL)
|
|
107
|
+
|
|
108
|
+
### Objective
|
|
109
|
+
Analyze design mock and extract tokens for frontend implementation.
|
|
110
|
+
|
|
111
|
+
### Relevant ACs
|
|
112
|
+
- ACs related to UI design, styling, visual consistency
|
|
113
|
+
|
|
114
|
+
### Prerequisites
|
|
115
|
+
- Phase 6 (backend-validator) passed
|
|
116
|
+
- Mock file exists at path specified in PM Decisions
|
|
117
|
+
|
|
118
|
+
### Files to Create/Modify
|
|
119
|
+
- `ds-mapping.json` - Token mappings from mock to theme
|
|
120
|
+
- `globals.css` (only if FULL mode and gaps found)
|
|
121
|
+
|
|
122
|
+
### Implementation Notes
|
|
123
|
+
- Use mock-analyst agent (generates ds-mapping.json automatically)
|
|
124
|
+
- For blocks: STRUCTURE mode for analysis
|
|
125
|
+
- For general components: FULL mode
|
|
126
|
+
- Document gaps and recommendations
|
|
127
|
+
<!-- PHASE:07:END -->
|
|
128
|
+
|
|
129
|
+
<!-- PHASE:08:START -->
|
|
130
|
+
## Phase 8: Frontend Developer
|
|
131
|
+
|
|
132
|
+
### Objective
|
|
133
|
+
Build UI components, state management, and translations.
|
|
134
|
+
|
|
135
|
+
### Relevant ACs
|
|
136
|
+
- ACn: [Extracted from requirements.md]
|
|
137
|
+
- ACm: [Only ACs relevant to UI/UX]
|
|
138
|
+
|
|
139
|
+
### Prerequisites
|
|
140
|
+
- Phase 5 complete (API endpoints working)
|
|
141
|
+
- Backend validator passed
|
|
142
|
+
|
|
143
|
+
### Files to Create/Modify
|
|
144
|
+
- `core/components/{{feature}}/` - UI components (shadcn/ui)
|
|
145
|
+
- `core/hooks/use{{Entity}}.ts` - TanStack Query hooks
|
|
146
|
+
- `messages/en.json` - English translations
|
|
147
|
+
- `messages/es.json` - Spanish translations
|
|
148
|
+
|
|
149
|
+
### Implementation Notes
|
|
150
|
+
- ZERO hardcoded strings (all text via translations)
|
|
151
|
+
- All interactive elements need data-cy selectors using sel()
|
|
152
|
+
- Follow compound component patterns
|
|
153
|
+
- Mobile-first responsive design
|
|
154
|
+
<!-- PHASE:08:END -->
|
|
155
|
+
|
|
156
|
+
<!-- PHASE:10:START -->
|
|
157
|
+
## Phase 10: Code Reviewer
|
|
158
|
+
|
|
159
|
+
### Objective
|
|
160
|
+
Review code quality, architecture patterns, and security.
|
|
161
|
+
|
|
162
|
+
### Relevant ACs
|
|
163
|
+
- All ACs (full feature review)
|
|
164
|
+
|
|
165
|
+
### Prerequisites
|
|
166
|
+
- Frontend validator passed
|
|
167
|
+
- All development phases complete
|
|
168
|
+
|
|
169
|
+
### Files to Review
|
|
170
|
+
- All files created in phases 3, 5, 8
|
|
171
|
+
- Focus on: patterns, security, performance
|
|
172
|
+
|
|
173
|
+
### Review Checklist
|
|
174
|
+
- [ ] Core/Theme boundaries respected
|
|
175
|
+
- [ ] No security vulnerabilities
|
|
176
|
+
- [ ] Registry pattern followed
|
|
177
|
+
- [ ] Performance concerns addressed
|
|
178
|
+
<!-- PHASE:10:END -->
|
|
179
|
+
|
|
180
|
+
<!-- PHASE:12:START -->
|
|
181
|
+
## Phase 12: QA Automation (OPTIONAL)
|
|
182
|
+
|
|
183
|
+
### Objective
|
|
184
|
+
Create Cypress automated tests (API + UAT) if PM Decision requires automation.
|
|
185
|
+
|
|
186
|
+
### Relevant ACs
|
|
187
|
+
- All ACs that can be automated
|
|
188
|
+
|
|
189
|
+
### Prerequisites
|
|
190
|
+
- QA Manual passed (Phase 11)
|
|
191
|
+
- All features working visually
|
|
192
|
+
|
|
193
|
+
### Files to Create/Modify
|
|
194
|
+
- `cypress/e2e/{{entity}}/` - UAT tests
|
|
195
|
+
- `cypress/e2e/api/{{entity}}.cy.ts` - API tests
|
|
196
|
+
- `cypress/support/pom/{{entity}}.pom.ts` - Page Object Model
|
|
197
|
+
|
|
198
|
+
### Implementation Notes
|
|
199
|
+
- Verify all data-cy selectors exist before writing tests
|
|
200
|
+
- Reuse existing POMs when possible
|
|
201
|
+
- Document results in tests.md
|
|
202
|
+
<!-- PHASE:12:END -->
|
|
203
|
+
|
|
204
|
+
<!-- PHASE:13:START -->
|
|
205
|
+
## Phase 13: Documentation Writer (CONDITIONAL)
|
|
206
|
+
|
|
207
|
+
### Objective
|
|
208
|
+
Create documentation based on PM Decisions.
|
|
209
|
+
|
|
210
|
+
### Relevant ACs
|
|
211
|
+
- Documentation-related ACs (if any)
|
|
212
|
+
|
|
213
|
+
### Prerequisites
|
|
214
|
+
- QA phase complete
|
|
215
|
+
- Feature fully implemented and tested
|
|
216
|
+
|
|
217
|
+
### Documentation Layers
|
|
218
|
+
Based on PM Decisions, create/update:
|
|
219
|
+
- Public docs (`docs/public/`) - If user-facing feature
|
|
220
|
+
- Superadmin docs (`docs/superadmin/`) - If admin configuration
|
|
221
|
+
- Skills (`.claude/skills/`) - If new patterns/conventions
|
|
222
|
+
|
|
223
|
+
### Implementation Notes
|
|
224
|
+
- Follow existing documentation style
|
|
225
|
+
- Include screenshots/examples where helpful
|
|
226
|
+
- Update skill if new patterns were introduced
|
|
227
|
+
<!-- PHASE:13:END -->
|
|
228
|
+
|
|
229
|
+
<!-- PHASE:14:START -->
|
|
230
|
+
## Phase 14: Unit Test Writer (OPTIONAL)
|
|
231
|
+
|
|
232
|
+
### Objective
|
|
233
|
+
Achieve 100% coverage on critical business logic paths.
|
|
234
|
+
|
|
235
|
+
### Relevant ACs
|
|
236
|
+
- ACs involving business logic, validation, edge cases
|
|
237
|
+
|
|
238
|
+
### Prerequisites
|
|
239
|
+
- All development phases complete
|
|
240
|
+
- Code review passed
|
|
241
|
+
|
|
242
|
+
### Files to Create/Modify
|
|
243
|
+
- `__tests__/unit/{{entity}}/` - Unit tests
|
|
244
|
+
- Focus on: services, utilities, edge cases
|
|
245
|
+
|
|
246
|
+
### Implementation Notes
|
|
247
|
+
- Analyze coverage report to identify gaps
|
|
248
|
+
- Focus on business logic, NOT API tests (already covered)
|
|
249
|
+
- Target: 100% coverage on critical paths
|
|
250
|
+
<!-- PHASE:14:END -->
|
|
251
|
+
|
|
252
|
+
---
|
|
253
|
+
|
|
254
|
+
## Technical Decisions
|
|
255
|
+
|
|
256
|
+
### Decision 1: [Topic]
|
|
257
|
+
**Options considered:**
|
|
258
|
+
1. [Option A] - [Pros/Cons]
|
|
259
|
+
2. [Option B] - [Pros/Cons]
|
|
260
|
+
|
|
261
|
+
**Chosen:** [Option X]
|
|
262
|
+
**Rationale:** [Why this was chosen]
|
|
263
|
+
|
|
264
|
+
---
|
|
265
|
+
|
|
266
|
+
## Risk Mitigation
|
|
267
|
+
|
|
268
|
+
| Risk | Probability | Impact | Mitigation |
|
|
269
|
+
|------|-------------|--------|------------|
|
|
270
|
+
| [Risk 1] | [Low/Med/High] | [Low/Med/High] | [How to mitigate] |
|
|
271
|
+
|
|
272
|
+
---
|
|
273
|
+
|
|
274
|
+
## Dependencies
|
|
275
|
+
|
|
276
|
+
### External
|
|
277
|
+
- [External API or service needed]
|
|
278
|
+
|
|
279
|
+
### Internal
|
|
280
|
+
- [Existing code/entities required]
|
|
281
|
+
|
|
282
|
+
---
|
|
283
|
+
|
|
284
|
+
## Success Criteria
|
|
285
|
+
|
|
286
|
+
1. [ ] All ACs from requirements.md are met
|
|
287
|
+
2. [ ] All tests pass (API + UAT)
|
|
288
|
+
3. [ ] Build succeeds without errors
|
|
289
|
+
4. [ ] Code review approved
|
|
290
|
+
|
|
291
|
+
---
|
|
292
|
+
|
|
293
|
+
## Notes
|
|
294
|
+
|
|
295
|
+
[Additional context, considerations, or warnings for developers]
|
|
296
|
+
|
|
297
|
+
---
|
|
298
|
+
|
|
299
|
+
**Next Step:** Run `split-plan.sh` then execute with `/session:execute`
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
# Requirements: {{SESSION_NAME}}
|
|
2
|
+
|
|
3
|
+
**Session:** `.claude/sessions/stories/{{SESSION_FULL}}/`
|
|
4
|
+
**Created:** {{DATE}}
|
|
5
|
+
**T-Shirt Size:** {{TSHIRT}}
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Business Context
|
|
10
|
+
|
|
11
|
+
### Problem Statement
|
|
12
|
+
[What problem does this feature solve?]
|
|
13
|
+
|
|
14
|
+
### Target Users
|
|
15
|
+
[Who will use this feature?]
|
|
16
|
+
|
|
17
|
+
### Business Value
|
|
18
|
+
[Why is this important?]
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
## User Stories
|
|
23
|
+
|
|
24
|
+
### Primary User Story
|
|
25
|
+
**As a** [user type]
|
|
26
|
+
**I want** [goal/action]
|
|
27
|
+
**So that** [benefit/value]
|
|
28
|
+
|
|
29
|
+
### Additional User Stories
|
|
30
|
+
1. As a [user type], I want [goal] so that [benefit]
|
|
31
|
+
|
|
32
|
+
---
|
|
33
|
+
|
|
34
|
+
## Acceptance Criteria
|
|
35
|
+
|
|
36
|
+
### AC1: [Title]
|
|
37
|
+
**Given** [precondition]
|
|
38
|
+
**When** [action]
|
|
39
|
+
**Then** [expected result]
|
|
40
|
+
|
|
41
|
+
**Details:**
|
|
42
|
+
- [Specific behavior]
|
|
43
|
+
|
|
44
|
+
### AC2: [Title]
|
|
45
|
+
**Given** [precondition]
|
|
46
|
+
**When** [action]
|
|
47
|
+
**Then** [expected result]
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
51
|
+
## UI/UX Requirements
|
|
52
|
+
|
|
53
|
+
### Screens/Views
|
|
54
|
+
- [Screen 1]: [Description]
|
|
55
|
+
|
|
56
|
+
### Key Interactions
|
|
57
|
+
- [Interaction 1]: [How user interacts]
|
|
58
|
+
|
|
59
|
+
### Responsive Behavior
|
|
60
|
+
- **Desktop:** [Behavior]
|
|
61
|
+
- **Mobile:** [Behavior]
|
|
62
|
+
|
|
63
|
+
---
|
|
64
|
+
|
|
65
|
+
## Technical Constraints
|
|
66
|
+
|
|
67
|
+
### Must Use
|
|
68
|
+
- [Required technology/pattern]
|
|
69
|
+
|
|
70
|
+
### Must Avoid
|
|
71
|
+
- [Prohibited approach]
|
|
72
|
+
|
|
73
|
+
---
|
|
74
|
+
|
|
75
|
+
## Data Requirements
|
|
76
|
+
|
|
77
|
+
### New Entities
|
|
78
|
+
- [Entity name]: [Description]
|
|
79
|
+
|
|
80
|
+
### Entity Relationships
|
|
81
|
+
- [Entity A] → [Entity B]: [Relationship]
|
|
82
|
+
|
|
83
|
+
---
|
|
84
|
+
|
|
85
|
+
## Out of Scope
|
|
86
|
+
|
|
87
|
+
- [What is NOT included]
|
|
88
|
+
|
|
89
|
+
---
|
|
90
|
+
|
|
91
|
+
## Technical Flags
|
|
92
|
+
|
|
93
|
+
| Flag | Value |
|
|
94
|
+
|------|-------|
|
|
95
|
+
| Requires New Selectors | yes / no / tbd |
|
|
96
|
+
| Requires New Blocks | yes / no / tbd |
|
|
97
|
+
| Requires Migrations | yes / no / tbd |
|
|
98
|
+
|
|
99
|
+
---
|
|
100
|
+
|
|
101
|
+
## Approval
|
|
102
|
+
|
|
103
|
+
- [ ] Requirements reviewed
|
|
104
|
+
- [ ] Technical flags set
|
|
105
|
+
- [ ] Ready for planning
|
|
106
|
+
|
|
107
|
+
---
|
|
108
|
+
|
|
109
|
+
**Next Step:** Create technical plan in `plan.md`
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
# Tests: {{SESSION_NAME}}
|
|
2
|
+
|
|
3
|
+
**Session:** `.claude/sessions/stories/{{SESSION_FULL}}/`
|
|
4
|
+
**Last Updated:** {{DATE}}
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## Test Results Summary
|
|
9
|
+
|
|
10
|
+
| Type | Total | Passed | Failed | Coverage |
|
|
11
|
+
|------|-------|--------|--------|----------|
|
|
12
|
+
| API | - | - | - | - |
|
|
13
|
+
| UAT | - | - | - | - |
|
|
14
|
+
| Unit | - | - | - | - |
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## Data-cy Selectors
|
|
19
|
+
|
|
20
|
+
### Components
|
|
21
|
+
|
|
22
|
+
| Component | Selector | Purpose |
|
|
23
|
+
|-----------|----------|---------|
|
|
24
|
+
| [Component name] | `data-cy="xxx"` | [What it identifies] |
|
|
25
|
+
|
|
26
|
+
### Forms
|
|
27
|
+
|
|
28
|
+
| Field | Selector | Type |
|
|
29
|
+
|-------|----------|------|
|
|
30
|
+
| [Field name] | `data-cy="xxx-input"` | [input/select/etc] |
|
|
31
|
+
|
|
32
|
+
### Actions
|
|
33
|
+
|
|
34
|
+
| Action | Selector | Description |
|
|
35
|
+
|--------|----------|-------------|
|
|
36
|
+
| [Action name] | `data-cy="xxx-button"` | [What it does] |
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
## Translation Keys
|
|
41
|
+
|
|
42
|
+
### Namespace: `{entity}`
|
|
43
|
+
|
|
44
|
+
| Key | EN | ES |
|
|
45
|
+
|-----|----|----|
|
|
46
|
+
| `title` | [English text] | [Spanish text] |
|
|
47
|
+
|
|
48
|
+
---
|
|
49
|
+
|
|
50
|
+
## API Test Coverage
|
|
51
|
+
|
|
52
|
+
### Entity: {entity}
|
|
53
|
+
|
|
54
|
+
| Endpoint | Method | Test File | Status |
|
|
55
|
+
|----------|--------|-----------|--------|
|
|
56
|
+
| `/api/v1/{entity}` | GET | `api/{entity}.cy.ts` | [ ] |
|
|
57
|
+
| `/api/v1/{entity}` | POST | `api/{entity}.cy.ts` | [ ] |
|
|
58
|
+
| `/api/v1/{entity}/[id]` | PATCH | `api/{entity}.cy.ts` | [ ] |
|
|
59
|
+
| `/api/v1/{entity}/[id]` | DELETE | `api/{entity}.cy.ts` | [ ] |
|
|
60
|
+
|
|
61
|
+
---
|
|
62
|
+
|
|
63
|
+
## UAT Test Coverage
|
|
64
|
+
|
|
65
|
+
### Feature: {feature}
|
|
66
|
+
|
|
67
|
+
| Scenario | Test File | Tags | Status |
|
|
68
|
+
|----------|-----------|------|--------|
|
|
69
|
+
| [Scenario description] | `uat/{feature}.cy.ts` | @smoke | [ ] |
|
|
70
|
+
|
|
71
|
+
---
|
|
72
|
+
|
|
73
|
+
## POMs Used
|
|
74
|
+
|
|
75
|
+
| POM | Location | Description |
|
|
76
|
+
|-----|----------|-------------|
|
|
77
|
+
| [POMName] | `cypress/support/pom/[name].ts` | [What pages it covers] |
|
|
78
|
+
|
|
79
|
+
---
|
|
80
|
+
|
|
81
|
+
## Issues Found During Testing
|
|
82
|
+
|
|
83
|
+
| Issue | Severity | Status | Resolution |
|
|
84
|
+
|-------|----------|--------|------------|
|
|
85
|
+
| [Description] | [High/Med/Low] | [ ] Open / [x] Fixed | [How it was fixed] |
|
|
86
|
+
|
|
87
|
+
---
|
|
88
|
+
|
|
89
|
+
## Notes
|
|
90
|
+
|
|
91
|
+
[Additional context about testing]
|