690513:0920 Refactor Workflow module: Lint error #01
CI / CD Pipeline / build (push) Failing after 10m44s
CI / CD Pipeline / deploy (push) Has been skipped

This commit is contained in:
2026-05-13 09:20:49 +07:00
parent e218fc826c
commit 5537d20152
299 changed files with 27326 additions and 2501 deletions
+8 -3
View File
@@ -1,7 +1,11 @@
// File: specs/[100/200/300]-category/feature-name/plan.md
// Change Log:
// - [DATE]: Initial implementation plan for [FEATURE]
# Implementation Plan: [FEATURE]
**Branch**: `[###-feature-name]` | **Date**: [DATE] | **Spec**: [link]
**Input**: Feature specification from `/specs/[###-feature-name]/spec.md`
**Input**: Feature specification from `/specs/[100/200/300]-category/feature-name/spec.md`
**Note**: This template is filled in by the `/speckit.plan` command. See `.specify/templates/commands/plan.md` for the execution workflow.
@@ -38,13 +42,14 @@ _GATE: Must pass before Phase 0 research. Re-check after Phase 1 design._
### Documentation (this feature)
```text
specs/[###-feature]/
specs/[100/200/300]-category/[feature-name]/
├── spec.md # Feature specification
├── plan.md # This file (/speckit.plan command output)
├── research.md # Phase 0 output (/speckit.plan command)
├── data-model.md # Phase 1 output (/speckit.plan command)
├── quickstart.md # Phase 1 output (/speckit.plan command)
├── contracts/ # Phase 1 output (/speckit.plan command)
└── tasks.md # Phase 2 output (/speckit.tasks command - NOT created by /speckit.plan)
└── tasks.md # Phase 2 output (/speckit.tasks command)
```
### Source Code (repository root)
+5
View File
@@ -1,8 +1,13 @@
// File: specs/[100/200/300]-category/feature-name/spec.md
// Change Log:
// - [DATE]: Initial specification for [FEATURE NAME]
# Feature Specification: [FEATURE NAME]
**Feature Branch**: `[###-feature-name]`
**Created**: [DATE]
**Status**: Draft
**Category**: [100-Infrastructures | 200-fullstacks | 300-others]
**Input**: User description: "$ARGUMENTS"
## User Scenarios & Testing _(mandatory)_
+9 -9
View File
@@ -1,10 +1,10 @@
---
description: 'Task list template for feature implementation'
---
// File: specs/[100/200/300]-category/feature-name/tasks.md
// Change Log:
// - [DATE]: Initial task list for [FEATURE NAME]
# Tasks: [FEATURE NAME]
**Input**: Design documents from `/specs/[###-feature-name]/`
**Input**: Design documents from `/specs/[100/200/300]-category/feature-name/`
**Prerequisites**: plan.md (required), spec.md (required for user stories), research.md, data-model.md, contracts/
**Tests**: The examples below include test tasks. Tests are OPTIONAL - only include them if explicitly requested in the feature specification.
@@ -17,12 +17,12 @@ description: 'Task list template for feature implementation'
- **[Story]**: Which user story this task belongs to (e.g., US1, US2, US3)
- Include exact file paths in descriptions
## Path Conventions
## Path Conventions (v1.9.0)
- **Single project**: `src/`, `tests/` at repository root
- **Web app**: `backend/src/`, `frontend/src/`
- **Mobile**: `api/src/`, `ios/src/` or `android/src/`
- Paths shown below assume single project - adjust based on plan.md structure
- **Backend (NestJS)**: `backend/src/`
- **Frontend (Next.js)**: `frontend/src/`
- **Specs (Hybrid)**: `specs/[100/200/300]-category/`
- Paths shown below assume standard LCBP3 mono-repo structure.
<!--
============================================================================