relaytask 0.1.0__tar.gz
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.
- relaytask-0.1.0/LICENSE +21 -0
- relaytask-0.1.0/PKG-INFO +46 -0
- relaytask-0.1.0/README.md +24 -0
- relaytask-0.1.0/pyproject.toml +45 -0
- relaytask-0.1.0/relaytask/__init__.py +1 -0
- relaytask-0.1.0/relaytask/__main__.py +4 -0
- relaytask-0.1.0/relaytask/assets/AGENTS.md.template +26 -0
- relaytask-0.1.0/relaytask/assets/DECISIONS.md.template +5 -0
- relaytask-0.1.0/relaytask/assets/PLAN.md.template +12 -0
- relaytask-0.1.0/relaytask/assets/REFS.md.template +10 -0
- relaytask-0.1.0/relaytask/assets/STATUS.json.template +28 -0
- relaytask-0.1.0/relaytask/assets/SYSTEM_MAP.md.template +15 -0
- relaytask-0.1.0/relaytask/assets/TASKS.md.template +12 -0
- relaytask-0.1.0/relaytask/assets/TASK_OVERVIEW.md.template +28 -0
- relaytask-0.1.0/relaytask/assets/WORKSPACE.md.template +14 -0
- relaytask-0.1.0/relaytask/assets/WORKSPACE_OVERVIEW.md.template +35 -0
- relaytask-0.1.0/relaytask/cli.py +2263 -0
- relaytask-0.1.0/relaytask/tui.py +2670 -0
- relaytask-0.1.0/relaytask.egg-info/PKG-INFO +46 -0
- relaytask-0.1.0/relaytask.egg-info/SOURCES.txt +23 -0
- relaytask-0.1.0/relaytask.egg-info/dependency_links.txt +1 -0
- relaytask-0.1.0/relaytask.egg-info/entry_points.txt +3 -0
- relaytask-0.1.0/relaytask.egg-info/requires.txt +1 -0
- relaytask-0.1.0/relaytask.egg-info/top_level.txt +1 -0
- relaytask-0.1.0/setup.cfg +4 -0
relaytask-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Swing
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
relaytask-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: relaytask
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Handoff-native multi-repo task workspace manager
|
|
5
|
+
Author: Swing
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Keywords: task,workflow,tmux,textual,agent,handoff,worktree
|
|
8
|
+
Classifier: Development Status :: 3 - Alpha
|
|
9
|
+
Classifier: Environment :: Console
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
15
|
+
Classifier: Topic :: Software Development :: Version Control :: Git
|
|
16
|
+
Classifier: Topic :: Utilities
|
|
17
|
+
Requires-Python: >=3.11
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
License-File: LICENSE
|
|
20
|
+
Requires-Dist: textual>=0.85
|
|
21
|
+
Dynamic: license-file
|
|
22
|
+
|
|
23
|
+
# RelayTask
|
|
24
|
+
|
|
25
|
+
Handoff-native multi-repo task workspace manager for agent-driven feature work.
|
|
26
|
+
|
|
27
|
+
## Install
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
pip install relaytask
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Run
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
relaytask
|
|
37
|
+
relaytask-tui
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## Local development
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
./bin/relaytask
|
|
44
|
+
./bin/relaytask-tui
|
|
45
|
+
python3 build_relaytask_bundle.py
|
|
46
|
+
```
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# RelayTask
|
|
2
|
+
|
|
3
|
+
Handoff-native multi-repo task workspace manager for agent-driven feature work.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install relaytask
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Run
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
relaytask
|
|
15
|
+
relaytask-tui
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Local development
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
./bin/relaytask
|
|
22
|
+
./bin/relaytask-tui
|
|
23
|
+
python3 build_relaytask_bundle.py
|
|
24
|
+
```
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "relaytask"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Handoff-native multi-repo task workspace manager"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.11"
|
|
11
|
+
license = "MIT"
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "Swing" }
|
|
14
|
+
]
|
|
15
|
+
keywords = ["task", "workflow", "tmux", "textual", "agent", "handoff", "worktree"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 3 - Alpha",
|
|
18
|
+
"Environment :: Console",
|
|
19
|
+
"Intended Audience :: Developers",
|
|
20
|
+
"Programming Language :: Python :: 3",
|
|
21
|
+
"Programming Language :: Python :: 3.11",
|
|
22
|
+
"Programming Language :: Python :: 3.12",
|
|
23
|
+
"Programming Language :: Python :: 3.13",
|
|
24
|
+
"Topic :: Software Development :: Version Control :: Git",
|
|
25
|
+
"Topic :: Utilities"
|
|
26
|
+
]
|
|
27
|
+
dependencies = [
|
|
28
|
+
"textual>=0.85",
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
[project.scripts]
|
|
32
|
+
relaytask = "relaytask.cli:main"
|
|
33
|
+
relaytask-tui = "relaytask.tui:main"
|
|
34
|
+
|
|
35
|
+
[tool.setuptools]
|
|
36
|
+
include-package-data = true
|
|
37
|
+
py-modules = []
|
|
38
|
+
|
|
39
|
+
[tool.setuptools.packages.find]
|
|
40
|
+
where = ["."]
|
|
41
|
+
include = ["relaytask"]
|
|
42
|
+
namespaces = false
|
|
43
|
+
|
|
44
|
+
[tool.setuptools.package-data]
|
|
45
|
+
relaytask = ["assets/*"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""RelayTask standalone scripts package."""
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Task Workspace AGENTS
|
|
2
|
+
|
|
3
|
+
- 기본 언어: 한글
|
|
4
|
+
- 이 디렉터리는 하나의 작업 컨텍스트를 담는다.
|
|
5
|
+
- 작업 시작 전 `PLAN.md`, `STATUS.json`, `DECISIONS.md`를 먼저 읽는다.
|
|
6
|
+
- 각 repo 내부의 `AGENT.md` 또는 `AGENTS.md`를 추가로 확인한다.
|
|
7
|
+
- repo 내부 가이드라인은 구현 규칙의 기준이며, 이 문서는 태스크 운영 규칙의 기준이다.
|
|
8
|
+
- 다음 작업자는 `STATUS.json`만 보고도 바로 직전 작업을 재개할 수 있어야 한다.
|
|
9
|
+
|
|
10
|
+
## 작업 목표
|
|
11
|
+
- [이 작업의 한 줄 목표]
|
|
12
|
+
|
|
13
|
+
## 포함 Repo
|
|
14
|
+
- `repo-a`: [포함 이유]
|
|
15
|
+
- `repo-b`: [포함 이유]
|
|
16
|
+
|
|
17
|
+
## 참조 가이드
|
|
18
|
+
[참조 가이드 경로 목록]
|
|
19
|
+
|
|
20
|
+
## 작업 규칙
|
|
21
|
+
- 상위 문서는 task 규칙을 담고, repo 내부 문서는 구현 규칙을 담는다.
|
|
22
|
+
- repo 범위 변경 시 `STATUS.json`과 이 문서를 함께 갱신한다.
|
|
23
|
+
- 중요한 판단은 `DECISIONS.md`에 기록한다.
|
|
24
|
+
- 세션 시작 시 `STATUS.json`의 `current_goal`, `in_progress`, `next_actions`, `resume_steps`를 먼저 최신화한다.
|
|
25
|
+
- 세션 종료 전 `STATUS.json`의 `last_work`, `next_actions`, `resume_steps`를 반드시 갱신한다.
|
|
26
|
+
- `재개 절차`에는 다음 작업자가 바로 실행할 명령, 열 파일, 확인 포인트를 남긴다.
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema_version": 1,
|
|
3
|
+
"updated_at": "[UPDATED_AT]",
|
|
4
|
+
"current_goal": [
|
|
5
|
+
"[CURRENT_GOAL]"
|
|
6
|
+
],
|
|
7
|
+
"completed": [
|
|
8
|
+
"[COMPLETED]"
|
|
9
|
+
],
|
|
10
|
+
"last_work": [
|
|
11
|
+
"[LAST_WORK]"
|
|
12
|
+
],
|
|
13
|
+
"in_progress": [
|
|
14
|
+
"[IN_PROGRESS]"
|
|
15
|
+
],
|
|
16
|
+
"next_actions": [
|
|
17
|
+
"[NEXT_ACTION_1]",
|
|
18
|
+
"[NEXT_ACTION_2]"
|
|
19
|
+
],
|
|
20
|
+
"resume_steps": [
|
|
21
|
+
"[RESUME_STEP_1]",
|
|
22
|
+
"[RESUME_STEP_2]",
|
|
23
|
+
"[RESUME_STEP_3]"
|
|
24
|
+
],
|
|
25
|
+
"links": [
|
|
26
|
+
"[LINK_1]"
|
|
27
|
+
]
|
|
28
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# SYSTEM MAP
|
|
2
|
+
|
|
3
|
+
## 개요
|
|
4
|
+
- [시스템 전체를 한두 문장으로 설명]
|
|
5
|
+
|
|
6
|
+
## Repo Map
|
|
7
|
+
| Repo | 소유 책임 | 소유하지 않는 것 | 보통 같이 보는 Repo | 포함 트리거 |
|
|
8
|
+
|---|---|---|---|---|
|
|
9
|
+
| repo-a | [책임] | [비책임] | [adjacent repos] | [언제 포함하는지] |
|
|
10
|
+
| repo-b | [책임] | [비책임] | [adjacent repos] | [언제 포함하는지] |
|
|
11
|
+
|
|
12
|
+
## 선택 규칙
|
|
13
|
+
- 도메인 규칙 변경이면 원천 소유 repo를 우선 포함한다.
|
|
14
|
+
- API 조합/응답 형태 변경이면 aggregation/BFF repo를 포함한다.
|
|
15
|
+
- 배포/런타임 검증이 필요하면 그 레이어 repo를 추가한다.
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# TASKS
|
|
2
|
+
|
|
3
|
+
| Task | State | Included Repos | Base / Feature / Promote | PR / Deploy | Last Updated |
|
|
4
|
+
|---|---|---|---|---|---|
|
|
5
|
+
|
|
6
|
+
## State Guide
|
|
7
|
+
- `planned`: task defined, worktrees not ready
|
|
8
|
+
- `ready`: repos selected, worktrees created
|
|
9
|
+
- `in-progress`: implementation active
|
|
10
|
+
- `review`: PR open or validation running
|
|
11
|
+
- `merged`: merged to mainline/develop
|
|
12
|
+
- `deployed`: runtime promotion completed
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Task Overview
|
|
2
|
+
|
|
3
|
+
## Task
|
|
4
|
+
- 이름: [태스크 이름]
|
|
5
|
+
- 상태: [태스크 상태]
|
|
6
|
+
- 요약: [태스크 요약]
|
|
7
|
+
- 브랜치: [태스크 브랜치]
|
|
8
|
+
|
|
9
|
+
## Selected Repos
|
|
10
|
+
| Repo | Base Branch | Worktree | Guide Snapshot |
|
|
11
|
+
|---|---|---|---|
|
|
12
|
+
[TASK_REPO_ROWS]
|
|
13
|
+
|
|
14
|
+
## Status Snapshot
|
|
15
|
+
- 현재 목표: [현재 목표]
|
|
16
|
+
- 진행 중: [진행 중]
|
|
17
|
+
- 다음 액션: [다음 액션]
|
|
18
|
+
|
|
19
|
+
## Files
|
|
20
|
+
- `AGENTS.md`
|
|
21
|
+
- `PLAN.md`
|
|
22
|
+
- `STATUS.json`
|
|
23
|
+
- `DECISIONS.md`
|
|
24
|
+
- `SYSTEM_MAP.md`
|
|
25
|
+
- `.context/repo-guides/`
|
|
26
|
+
|
|
27
|
+
## Promotion
|
|
28
|
+
- feature -> develop -> main PR
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# WORKSPACE
|
|
2
|
+
|
|
3
|
+
## 이름
|
|
4
|
+
- [워크스페이스 이름]
|
|
5
|
+
|
|
6
|
+
## 설명
|
|
7
|
+
- [워크스페이스 설명]
|
|
8
|
+
|
|
9
|
+
## 구성 원칙
|
|
10
|
+
- 이 워크스페이스는 task-first 멀티레포 작업을 관리한다.
|
|
11
|
+
- 상위 `TASKS.md`는 전체 작업 목록을 담는다.
|
|
12
|
+
- 상위 `SYSTEM_MAP.md`는 repo 책임과 선택 기준을 담는다.
|
|
13
|
+
- `refs/`는 읽기 전용 mainline 참조 레이어다.
|
|
14
|
+
- 각 task 디렉터리는 구현과 상태 기록의 단위다.
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Workspace Overview
|
|
2
|
+
|
|
3
|
+
## Workspace
|
|
4
|
+
- 이름: [워크스페이스 이름]
|
|
5
|
+
- 설명: [워크스페이스 설명]
|
|
6
|
+
|
|
7
|
+
## Layout
|
|
8
|
+
```text
|
|
9
|
+
[워크스페이스 루트]
|
|
10
|
+
TASKS.md
|
|
11
|
+
WORKSPACE.md
|
|
12
|
+
SYSTEM_MAP.md
|
|
13
|
+
OVERVIEW.md
|
|
14
|
+
refs/
|
|
15
|
+
.meta/
|
|
16
|
+
<task-name>/
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Repo Catalog
|
|
20
|
+
| Repo | Base Branch | Summary | Keywords |
|
|
21
|
+
|---|---|---|---|
|
|
22
|
+
[REPO_CATALOG_ROWS]
|
|
23
|
+
|
|
24
|
+
## Lifecycle
|
|
25
|
+
1. `workspace-init`
|
|
26
|
+
2. `task-new`
|
|
27
|
+
3. `task-list`
|
|
28
|
+
4. `task-continue`
|
|
29
|
+
5. `task-promote`
|
|
30
|
+
6. `task-release`
|
|
31
|
+
|
|
32
|
+
## Rules
|
|
33
|
+
- `refs/`는 읽기 전용 참조 레이어다.
|
|
34
|
+
- task별 상태는 각 task의 `STATUS.json`이 최신 기준이다.
|
|
35
|
+
- 전체 현황은 상위 `TASKS.md`에서 본다.
|