mirror of
https://github.com/magnus919/agent-skills.git
synced 2026-09-20 08:06:35 +03:00
Move the 8 directories under bundles/ to the repo root via git mv and remove the now-empty bundles/ directory. Replace the "bundles" entry in pyproject.toml [tool.deptry] extend_exclude with the 8 moved dir names so the moved trees stay excluded from Python dependency analysis. Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com>
11 lines
308 B
Markdown
11 lines
308 B
Markdown
# Developer Pipeline Kanban — Decision Map
|
|
|
|
```mermaid
|
|
flowchart LR
|
|
START(["New Feature Request"]) --> BUILD["Build Phase"]
|
|
BUILD --> REVIEW{"Review Outcome"}
|
|
REVIEW -->|"Approved"| DEPLOY["Deploy Phase"]
|
|
REVIEW -->|"Changes Requested"| BUILD
|
|
DEPLOY --> DONE(["Pipeline Complete"])
|
|
```
|