@rlarua/agentteams-cli 0.0.6 → 0.0.7
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/README.md +69 -29
- package/dist/commands/convention.d.ts +9 -3
- package/dist/commands/convention.d.ts.map +1 -1
- package/dist/commands/convention.js +121 -73
- package/dist/commands/convention.js.map +1 -1
- package/dist/commands/dependency.d.ts +1 -1
- package/dist/commands/dependency.d.ts.map +1 -1
- package/dist/commands/dependency.js +10 -4
- package/dist/commands/dependency.js.map +1 -1
- package/dist/commands/index.d.ts.map +1 -1
- package/dist/commands/index.js +174 -65
- package/dist/commands/index.js.map +1 -1
- package/dist/commands/init.d.ts.map +1 -1
- package/dist/commands/init.js +22 -2
- package/dist/commands/init.js.map +1 -1
- package/dist/index.js +61 -20
- package/dist/index.js.map +1 -1
- package/dist/utils/authServer.d.ts +0 -4
- package/dist/utils/authServer.d.ts.map +1 -1
- package/dist/utils/authServer.js +1 -5
- package/dist/utils/authServer.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -25,16 +25,19 @@ agentteams init
|
|
|
25
25
|
This command:
|
|
26
26
|
- Opens your browser for OAuth authentication
|
|
27
27
|
- Creates `.agentteams/config.json` with credentials
|
|
28
|
-
- Downloads
|
|
28
|
+
- Downloads convention index to `.agentteams/convention.md`
|
|
29
|
+
- Runs sync to download category conventions into `.agentteams/<category>/*.md`
|
|
29
30
|
- Detects your AI environment (Claude Code, opencode, codex)
|
|
30
31
|
|
|
32
|
+
You can run `agentteams sync` later to refresh them again.
|
|
33
|
+
|
|
31
34
|
**What gets created:**
|
|
32
35
|
|
|
33
36
|
```
|
|
34
37
|
your-project/
|
|
35
38
|
├── .agentteams/
|
|
36
39
|
│ ├── config.json # API credentials
|
|
37
|
-
│ └── convention.md #
|
|
40
|
+
│ └── convention.md # Convention index template
|
|
38
41
|
```
|
|
39
42
|
|
|
40
43
|
### 2. Add to .gitignore
|
|
@@ -51,11 +54,14 @@ Protect your API keys by adding this to `.gitignore`:
|
|
|
51
54
|
After initialization, conventions are available to your AI agent. The CLI provides setup instructions based on your environment.
|
|
52
55
|
|
|
53
56
|
```bash
|
|
54
|
-
#
|
|
57
|
+
# List conventions
|
|
58
|
+
agentteams convention list
|
|
59
|
+
|
|
60
|
+
# Show full conventions
|
|
55
61
|
agentteams convention show
|
|
56
62
|
|
|
57
|
-
#
|
|
58
|
-
agentteams convention
|
|
63
|
+
# Download all conventions from server
|
|
64
|
+
agentteams convention download
|
|
59
65
|
```
|
|
60
66
|
|
|
61
67
|
## Commands
|
|
@@ -75,16 +81,31 @@ Opens browser for authentication, saves config, and downloads conventions. For S
|
|
|
75
81
|
Manage project conventions.
|
|
76
82
|
|
|
77
83
|
```bash
|
|
78
|
-
#
|
|
84
|
+
# List conventions
|
|
85
|
+
agentteams convention list
|
|
86
|
+
|
|
87
|
+
# Show all convention markdown in terminal
|
|
79
88
|
agentteams convention show
|
|
80
89
|
|
|
81
|
-
#
|
|
82
|
-
agentteams convention
|
|
90
|
+
# Download all conventions and save dev files
|
|
91
|
+
agentteams convention download
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
`convention download` saves files by category directory (for example: `.agentteams/rules/<name>.md`).
|
|
95
|
+
If duplicate names exist in the same category, numeric suffixes are added (for example: `rules.md`, `rules-2.md`).
|
|
96
|
+
Before saving, the CLI cleans up existing files in each target category directory.
|
|
83
97
|
|
|
84
|
-
|
|
85
|
-
|
|
98
|
+
### `sync`
|
|
99
|
+
|
|
100
|
+
Sync local convention files from API.
|
|
101
|
+
|
|
102
|
+
```bash
|
|
103
|
+
# Download conventions by category into .agentteams/<category>/*.md
|
|
104
|
+
agentteams sync
|
|
86
105
|
```
|
|
87
106
|
|
|
107
|
+
`sync` also refreshes `.agentteams/convention.md` template.
|
|
108
|
+
|
|
88
109
|
### `agent-config`
|
|
89
110
|
|
|
90
111
|
Manage agent configurations.
|
|
@@ -108,9 +129,11 @@ Manage agent status reports.
|
|
|
108
129
|
```bash
|
|
109
130
|
# Report status
|
|
110
131
|
agentteams status report \
|
|
111
|
-
--agent
|
|
132
|
+
--agent "my-agent" \
|
|
112
133
|
--status "IN_PROGRESS" \
|
|
113
|
-
--
|
|
134
|
+
--task "작업 중" \
|
|
135
|
+
--issues "" \
|
|
136
|
+
--remaining "next step"
|
|
114
137
|
|
|
115
138
|
# List statuses
|
|
116
139
|
agentteams status list
|
|
@@ -119,13 +142,19 @@ agentteams status list
|
|
|
119
142
|
agentteams status get --id <status-id>
|
|
120
143
|
|
|
121
144
|
# Update status
|
|
122
|
-
agentteams status update --id <status-id> --status "
|
|
145
|
+
agentteams status update --id <status-id> --status "DONE"
|
|
123
146
|
|
|
124
147
|
# Delete status
|
|
125
148
|
agentteams status delete --id <status-id>
|
|
126
149
|
```
|
|
127
150
|
|
|
128
|
-
**Status values:** `
|
|
151
|
+
**Status values:** `IN_PROGRESS`, `DONE`, `BLOCKED`
|
|
152
|
+
|
|
153
|
+
`--issues`, `--remaining` are comma-separated strings.
|
|
154
|
+
Examples:
|
|
155
|
+
- `--issues "api timeout,auth failure"`
|
|
156
|
+
- `--remaining "add tests,write docs"`
|
|
157
|
+
- empty list: `--issues ""`
|
|
129
158
|
|
|
130
159
|
### `task`
|
|
131
160
|
|
|
@@ -165,28 +194,39 @@ Manage task comments.
|
|
|
165
194
|
|
|
166
195
|
```bash
|
|
167
196
|
agentteams comment create \
|
|
168
|
-
--task-id
|
|
169
|
-
--
|
|
170
|
-
--
|
|
197
|
+
--task-id <task-id> \
|
|
198
|
+
--type GENERAL \
|
|
199
|
+
--content "Great work!"
|
|
200
|
+
|
|
201
|
+
# Types: RISK, MODIFICATION, GENERAL
|
|
171
202
|
```
|
|
172
203
|
|
|
173
|
-
### `
|
|
204
|
+
### `dependency`
|
|
174
205
|
|
|
175
|
-
|
|
206
|
+
Manage task dependencies.
|
|
176
207
|
|
|
177
208
|
```bash
|
|
178
|
-
#
|
|
179
|
-
agentteams
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
209
|
+
# List dependencies for a task
|
|
210
|
+
agentteams dependency list --task-id <task-id>
|
|
211
|
+
|
|
212
|
+
# Add dependency
|
|
213
|
+
agentteams dependency create --task-id <task-id> --blocking-task-id <blocking-task-id>
|
|
214
|
+
|
|
215
|
+
# Delete dependency
|
|
216
|
+
agentteams dependency delete --task-id <task-id> --dep-id <dependency-id>
|
|
217
|
+
```
|
|
218
|
+
|
|
219
|
+
### `report`
|
|
183
220
|
|
|
184
|
-
|
|
221
|
+
Create completion reports (stored as Markdown).
|
|
222
|
+
|
|
223
|
+
```bash
|
|
224
|
+
# Create from inline markdown
|
|
185
225
|
agentteams report create \
|
|
186
|
-
--
|
|
187
|
-
--
|
|
188
|
-
--
|
|
189
|
-
--
|
|
226
|
+
--title "AgentBoard MVP 구현" \
|
|
227
|
+
--content "## TL;DR\n- done" \
|
|
228
|
+
--report-type IMPL_PLAN \
|
|
229
|
+
--status COMPLETED
|
|
190
230
|
```
|
|
191
231
|
|
|
192
232
|
### `config`
|
|
@@ -1,4 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
import type { Config } from "../types/index.js";
|
|
2
|
+
type ConventionCommandOptions = {
|
|
3
|
+
cwd?: string;
|
|
4
|
+
config?: Config;
|
|
5
|
+
};
|
|
6
|
+
export declare function conventionShow(): Promise<any>;
|
|
7
|
+
export declare function conventionList(): Promise<any>;
|
|
8
|
+
export declare function conventionDownload(options?: ConventionCommandOptions): Promise<string>;
|
|
9
|
+
export {};
|
|
4
10
|
//# sourceMappingURL=convention.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"convention.d.ts","sourceRoot":"","sources":["../../src/commands/convention.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"convention.d.ts","sourceRoot":"","sources":["../../src/commands/convention.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,mBAAmB,CAAC;AAMhD,KAAK,wBAAwB,GAAG;IAC9B,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB,CAAC;AA+BF,wBAAsB,cAAc,IAAI,OAAO,CAAC,GAAG,CAAC,CA2BnD;AAED,wBAAsB,cAAc,IAAI,OAAO,CAAC,GAAG,CAAC,CAwBnD;AA4DD,wBAAsB,kBAAkB,CAAC,OAAO,CAAC,EAAE,wBAAwB,GAAG,OAAO,CAAC,MAAM,CAAC,CA6E5F"}
|
|
@@ -1,106 +1,154 @@
|
|
|
1
|
-
import { existsSync,
|
|
1
|
+
import { existsSync, mkdirSync, rmSync, writeFileSync } from "node:fs";
|
|
2
2
|
import { join, resolve } from "node:path";
|
|
3
|
-
import { createInterface } from "node:readline";
|
|
4
3
|
import axios from "axios";
|
|
5
4
|
import { loadConfig, findProjectConfig } from "../utils/config.js";
|
|
6
5
|
const CONVENTION_DIR = ".agentteams";
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
const configPath = findProjectConfig(process.cwd());
|
|
6
|
+
const LEGACY_CONVENTION_DOWNLOAD_DIR = "conventions";
|
|
7
|
+
const CONVENTION_INDEX_FILE = "convention.md";
|
|
8
|
+
function findProjectRoot(cwd) {
|
|
9
|
+
const configPath = findProjectConfig(cwd ?? process.cwd());
|
|
12
10
|
if (!configPath)
|
|
13
11
|
return null;
|
|
14
12
|
// configPath = /path/.agentteams/config.json → resolve up 2 levels to project root
|
|
15
13
|
return resolve(configPath, "..", "..");
|
|
16
14
|
}
|
|
17
|
-
function
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
15
|
+
function getApiBaseUrl(apiUrl) {
|
|
16
|
+
return apiUrl.endsWith("/") ? apiUrl.slice(0, -1) : apiUrl;
|
|
17
|
+
}
|
|
18
|
+
function getApiConfigOrThrow(options) {
|
|
19
|
+
const config = options?.config ?? loadConfig();
|
|
20
|
+
if (!config) {
|
|
21
|
+
throw new Error("Configuration not found. Run 'agentteams init' first or set AGENTTEAMS_* environment variables.");
|
|
22
|
+
}
|
|
23
|
+
return {
|
|
24
|
+
config,
|
|
25
|
+
apiUrl: getApiBaseUrl(config.apiUrl),
|
|
26
|
+
headers: {
|
|
27
|
+
"X-API-Key": config.apiKey,
|
|
28
|
+
"Content-Type": "application/json",
|
|
29
|
+
},
|
|
30
|
+
};
|
|
28
31
|
}
|
|
29
32
|
export async function conventionShow() {
|
|
30
|
-
const
|
|
31
|
-
|
|
32
|
-
|
|
33
|
+
const { config, apiUrl, headers } = getApiConfigOrThrow();
|
|
34
|
+
const listResponse = await axios.get(`${apiUrl}/api/projects/${config.projectId}/conventions`, { headers });
|
|
35
|
+
const conventions = listResponse.data?.data;
|
|
36
|
+
if (!conventions || conventions.length === 0) {
|
|
37
|
+
throw new Error("No conventions found for this project. Create one via the web dashboard first.");
|
|
33
38
|
}
|
|
34
|
-
const
|
|
35
|
-
|
|
36
|
-
|
|
39
|
+
const sections = [];
|
|
40
|
+
for (const convention of conventions) {
|
|
41
|
+
const downloadResponse = await axios.get(`${apiUrl}/api/projects/${config.projectId}/conventions/${convention.id}/download`, { headers, responseType: "text" });
|
|
42
|
+
const sectionHeader = `# ${convention.title ?? "untitled"}\ncategory: ${convention.category ?? "uncategorized"}\nid: ${convention.id}`;
|
|
43
|
+
sections.push(`${sectionHeader}\n\n${downloadResponse.data}`);
|
|
37
44
|
}
|
|
38
|
-
return
|
|
45
|
+
return sections.join("\n\n---\n\n");
|
|
39
46
|
}
|
|
40
|
-
export async function
|
|
41
|
-
const
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
if (!existsSync(conventionPath)) {
|
|
47
|
-
throw new Error(`Convention file not found: ${conventionPath}\nRun 'agentteams convention update' first.`);
|
|
47
|
+
export async function conventionList() {
|
|
48
|
+
const { config, apiUrl, headers } = getApiConfigOrThrow();
|
|
49
|
+
const response = await axios.get(`${apiUrl}/api/projects/${config.projectId}/conventions`, { headers });
|
|
50
|
+
const conventions = response.data?.data;
|
|
51
|
+
if (!Array.isArray(conventions)) {
|
|
52
|
+
return response.data;
|
|
48
53
|
}
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
54
|
+
return {
|
|
55
|
+
data: conventions.map((item) => ({
|
|
56
|
+
id: item.id,
|
|
57
|
+
title: item.title,
|
|
58
|
+
category: item.category,
|
|
59
|
+
fileName: item.fileName,
|
|
60
|
+
updatedAt: item.updatedAt,
|
|
61
|
+
createdAt: item.createdAt,
|
|
62
|
+
})),
|
|
63
|
+
meta: response.data?.meta,
|
|
64
|
+
};
|
|
65
|
+
}
|
|
66
|
+
function toSafeFileName(input) {
|
|
67
|
+
return input
|
|
68
|
+
.toLowerCase()
|
|
69
|
+
.replace(/[^a-z0-9]+/g, "-")
|
|
70
|
+
.replace(/^-+|-+$/g, "")
|
|
71
|
+
.slice(0, 60);
|
|
72
|
+
}
|
|
73
|
+
function toSafeDirectoryName(input) {
|
|
74
|
+
const normalized = toSafeFileName(input);
|
|
75
|
+
return normalized.length > 0 ? normalized : "uncategorized";
|
|
76
|
+
}
|
|
77
|
+
function buildConventionFileName(convention) {
|
|
78
|
+
if (convention.fileName && convention.fileName.trim().length > 0) {
|
|
79
|
+
return convention.fileName.trim();
|
|
57
80
|
}
|
|
58
|
-
const
|
|
59
|
-
|
|
60
|
-
|
|
81
|
+
const titleSegment = convention.title ? toSafeFileName(convention.title) : "";
|
|
82
|
+
const prefix = titleSegment.length > 0 ? titleSegment : "convention";
|
|
83
|
+
return `${prefix}.md`;
|
|
84
|
+
}
|
|
85
|
+
async function downloadReportingTemplate(projectRoot, config, apiUrl, headers) {
|
|
86
|
+
const agentConfigResponse = await axios.get(`${apiUrl}/api/projects/${config.projectId}/agent-configs`, { headers });
|
|
87
|
+
const agentConfigs = agentConfigResponse.data?.data;
|
|
88
|
+
if (!Array.isArray(agentConfigs) || agentConfigs.length === 0) {
|
|
89
|
+
return false;
|
|
61
90
|
}
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
writeFileSync(claudeMdPath, content + conventionRef, "utf-8");
|
|
91
|
+
const firstAgentConfig = agentConfigs[0];
|
|
92
|
+
if (!firstAgentConfig?.id || typeof firstAgentConfig.id !== "string") {
|
|
93
|
+
return false;
|
|
66
94
|
}
|
|
67
|
-
|
|
68
|
-
|
|
95
|
+
const templateResponse = await axios.get(`${apiUrl}/api/projects/${config.projectId}/agent-configs/${firstAgentConfig.id}/convention`, { headers });
|
|
96
|
+
const content = templateResponse.data?.data?.content;
|
|
97
|
+
if (typeof content !== "string") {
|
|
98
|
+
return false;
|
|
69
99
|
}
|
|
70
|
-
const
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
return `Convention reference appended to ${CLAUDE_MD}.\n${backupMsg}`;
|
|
100
|
+
const conventionPath = join(projectRoot, CONVENTION_DIR, CONVENTION_INDEX_FILE);
|
|
101
|
+
writeFileSync(conventionPath, content, "utf-8");
|
|
102
|
+
return true;
|
|
74
103
|
}
|
|
75
|
-
export async function
|
|
76
|
-
const config =
|
|
77
|
-
|
|
78
|
-
throw new Error("Configuration not found. Run 'agentteams init' first or set environment variables.");
|
|
79
|
-
}
|
|
80
|
-
const projectRoot = findProjectRoot();
|
|
104
|
+
export async function conventionDownload(options) {
|
|
105
|
+
const { config, apiUrl, headers } = getApiConfigOrThrow(options);
|
|
106
|
+
const projectRoot = findProjectRoot(options?.cwd);
|
|
81
107
|
if (!projectRoot) {
|
|
82
108
|
throw new Error("No .agentteams directory found. Run 'agentteams init' first.");
|
|
83
109
|
}
|
|
84
|
-
const
|
|
85
|
-
|
|
86
|
-
:
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
"Content-Type": "application/json",
|
|
90
|
-
};
|
|
110
|
+
const conventionRoot = join(projectRoot, CONVENTION_DIR);
|
|
111
|
+
if (!existsSync(conventionRoot)) {
|
|
112
|
+
throw new Error(`Convention directory not found: ${conventionRoot}\nRun 'agentteams init' first.`);
|
|
113
|
+
}
|
|
114
|
+
const hasReportingTemplate = await downloadReportingTemplate(projectRoot, config, apiUrl, headers);
|
|
91
115
|
const listResponse = await axios.get(`${apiUrl}/api/projects/${config.projectId}/conventions`, { headers });
|
|
92
116
|
const conventions = listResponse.data?.data;
|
|
93
117
|
if (!conventions || conventions.length === 0) {
|
|
118
|
+
if (hasReportingTemplate) {
|
|
119
|
+
return `Convention sync completed.\nUpdated ${CONVENTION_DIR}/${CONVENTION_INDEX_FILE}\nNo project conventions found.`;
|
|
120
|
+
}
|
|
94
121
|
throw new Error("No conventions found for this project. Create one via the web dashboard first.");
|
|
95
122
|
}
|
|
96
|
-
const
|
|
123
|
+
const legacyDir = join(projectRoot, CONVENTION_DIR, LEGACY_CONVENTION_DOWNLOAD_DIR);
|
|
124
|
+
rmSync(legacyDir, { recursive: true, force: true });
|
|
125
|
+
const categoryDirs = new Set();
|
|
126
|
+
for (const convention of conventions) {
|
|
127
|
+
const categoryName = typeof convention.category === "string" ? convention.category : "";
|
|
128
|
+
categoryDirs.add(toSafeDirectoryName(categoryName));
|
|
129
|
+
}
|
|
130
|
+
for (const categoryDir of categoryDirs) {
|
|
131
|
+
rmSync(join(projectRoot, CONVENTION_DIR, categoryDir), { recursive: true, force: true });
|
|
132
|
+
mkdirSync(join(projectRoot, CONVENTION_DIR, categoryDir), { recursive: true });
|
|
133
|
+
}
|
|
134
|
+
const fileNameCount = new Map();
|
|
97
135
|
for (const convention of conventions) {
|
|
98
136
|
const downloadResponse = await axios.get(`${apiUrl}/api/projects/${config.projectId}/conventions/${convention.id}/download`, { headers, responseType: "text" });
|
|
99
|
-
|
|
137
|
+
const baseFileName = buildConventionFileName(convention);
|
|
138
|
+
const categoryName = typeof convention.category === "string" ? convention.category : "";
|
|
139
|
+
const categoryDir = toSafeDirectoryName(categoryName);
|
|
140
|
+
const duplicateKey = `${categoryDir}/${baseFileName}`;
|
|
141
|
+
const seenCount = fileNameCount.get(duplicateKey) ?? 0;
|
|
142
|
+
fileNameCount.set(duplicateKey, seenCount + 1);
|
|
143
|
+
const fileName = seenCount === 0
|
|
144
|
+
? baseFileName
|
|
145
|
+
: baseFileName.replace(/\.md$/, `-${seenCount + 1}.md`);
|
|
146
|
+
const filePath = join(projectRoot, CONVENTION_DIR, categoryDir, fileName);
|
|
147
|
+
writeFileSync(filePath, downloadResponse.data, "utf-8");
|
|
100
148
|
}
|
|
101
|
-
const
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
return `Convention
|
|
149
|
+
const reportingLine = hasReportingTemplate
|
|
150
|
+
? `Updated ${CONVENTION_DIR}/${CONVENTION_INDEX_FILE}\n`
|
|
151
|
+
: "";
|
|
152
|
+
return `Convention sync completed.\n${reportingLine}Downloaded ${conventions.length} file(s) into category directories under ${CONVENTION_DIR}`;
|
|
105
153
|
}
|
|
106
154
|
//# sourceMappingURL=convention.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"convention.js","sourceRoot":"","sources":["../../src/commands/convention.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,
|
|
1
|
+
{"version":3,"file":"convention.js","sourceRoot":"","sources":["../../src/commands/convention.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare function dependencyList(taskId: string): Promise<any>;
|
|
2
|
-
export declare function dependencyCreate(taskId: string,
|
|
2
|
+
export declare function dependencyCreate(taskId: string, blockingTaskId: string): Promise<any>;
|
|
3
3
|
export declare function dependencyDelete(taskId: string, depId: string): Promise<any>;
|
|
4
4
|
//# sourceMappingURL=dependency.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dependency.d.ts","sourceRoot":"","sources":["../../src/commands/dependency.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"dependency.d.ts","sourceRoot":"","sources":["../../src/commands/dependency.ts"],"names":[],"mappings":"AAwBA,wBAAsB,cAAc,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,GAAG,CAAC,CAQjE;AAED,wBAAsB,gBAAgB,CACpC,MAAM,EAAE,MAAM,EACd,cAAc,EAAE,MAAM,GACrB,OAAO,CAAC,GAAG,CAAC,CASd;AAED,wBAAsB,gBAAgB,CACpC,MAAM,EAAE,MAAM,EACd,KAAK,EAAE,MAAM,GACZ,OAAO,CAAC,GAAG,CAAC,CAWd"}
|
|
@@ -13,19 +13,25 @@ function getHeaders(apiKey) {
|
|
|
13
13
|
'Content-Type': 'application/json',
|
|
14
14
|
};
|
|
15
15
|
}
|
|
16
|
+
function getApiBaseUrl(apiUrl) {
|
|
17
|
+
return apiUrl.endsWith('/') ? apiUrl.slice(0, -1) : apiUrl;
|
|
18
|
+
}
|
|
16
19
|
export async function dependencyList(taskId) {
|
|
17
20
|
const config = getConfigOrThrow();
|
|
18
|
-
const
|
|
21
|
+
const apiBaseUrl = getApiBaseUrl(config.apiUrl);
|
|
22
|
+
const response = await axios.get(`${apiBaseUrl}/api/projects/${config.projectId}/tasks/${taskId}/dependencies`, { headers: getHeaders(config.apiKey) });
|
|
19
23
|
return response.data;
|
|
20
24
|
}
|
|
21
|
-
export async function dependencyCreate(taskId,
|
|
25
|
+
export async function dependencyCreate(taskId, blockingTaskId) {
|
|
22
26
|
const config = getConfigOrThrow();
|
|
23
|
-
const
|
|
27
|
+
const apiBaseUrl = getApiBaseUrl(config.apiUrl);
|
|
28
|
+
const response = await axios.post(`${apiBaseUrl}/api/projects/${config.projectId}/tasks/${taskId}/dependencies`, { blockingTaskId }, { headers: getHeaders(config.apiKey) });
|
|
24
29
|
return response.data;
|
|
25
30
|
}
|
|
26
31
|
export async function dependencyDelete(taskId, depId) {
|
|
27
32
|
const config = getConfigOrThrow();
|
|
28
|
-
const
|
|
33
|
+
const apiBaseUrl = getApiBaseUrl(config.apiUrl);
|
|
34
|
+
const response = await axios.delete(`${apiBaseUrl}/api/projects/${config.projectId}/tasks/${taskId}/dependencies/${depId}`, { headers: getHeaders(config.apiKey) });
|
|
29
35
|
if (response.status === 204) {
|
|
30
36
|
return { message: `Dependency ${depId} deleted from task ${taskId}.` };
|
|
31
37
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dependency.js","sourceRoot":"","sources":["../../src/commands/dependency.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAEhD,SAAS,gBAAgB;IACvB,MAAM,MAAM,GAAG,UAAU,EAAE,CAAC;IAC5B,IAAI,CAAC,MAAM,EAAE,CAAC;QACZ,MAAM,IAAI,KAAK,CACb,iGAAiG,CAClG,CAAC;IACJ,CAAC;IACD,OAAO,MAAM,CAAC;AAChB,CAAC;AAED,SAAS,UAAU,CAAC,MAAc;IAChC,OAAO;QACL,WAAW,EAAE,MAAM;QACnB,cAAc,EAAE,kBAAkB;KACnC,CAAC;AACJ,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,cAAc,CAAC,MAAc;IACjD,MAAM,MAAM,GAAG,gBAAgB,EAAE,CAAC;IAClC,MAAM,QAAQ,GAAG,MAAM,KAAK,CAAC,GAAG,CAC9B,GAAG,MAAM,CAAC,
|
|
1
|
+
{"version":3,"file":"dependency.js","sourceRoot":"","sources":["../../src/commands/dependency.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAEhD,SAAS,gBAAgB;IACvB,MAAM,MAAM,GAAG,UAAU,EAAE,CAAC;IAC5B,IAAI,CAAC,MAAM,EAAE,CAAC;QACZ,MAAM,IAAI,KAAK,CACb,iGAAiG,CAClG,CAAC;IACJ,CAAC;IACD,OAAO,MAAM,CAAC;AAChB,CAAC;AAED,SAAS,UAAU,CAAC,MAAc;IAChC,OAAO;QACL,WAAW,EAAE,MAAM;QACnB,cAAc,EAAE,kBAAkB;KACnC,CAAC;AACJ,CAAC;AAED,SAAS,aAAa,CAAC,MAAc;IACnC,OAAO,MAAM,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC;AAC7D,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,cAAc,CAAC,MAAc;IACjD,MAAM,MAAM,GAAG,gBAAgB,EAAE,CAAC;IAClC,MAAM,UAAU,GAAG,aAAa,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAChD,MAAM,QAAQ,GAAG,MAAM,KAAK,CAAC,GAAG,CAC9B,GAAG,UAAU,iBAAiB,MAAM,CAAC,SAAS,UAAU,MAAM,eAAe,EAC7E,EAAE,OAAO,EAAE,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE,CACvC,CAAC;IACF,OAAO,QAAQ,CAAC,IAAI,CAAC;AACvB,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,gBAAgB,CACpC,MAAc,EACd,cAAsB;IAEtB,MAAM,MAAM,GAAG,gBAAgB,EAAE,CAAC;IAClC,MAAM,UAAU,GAAG,aAAa,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAChD,MAAM,QAAQ,GAAG,MAAM,KAAK,CAAC,IAAI,CAC/B,GAAG,UAAU,iBAAiB,MAAM,CAAC,SAAS,UAAU,MAAM,eAAe,EAC7E,EAAE,cAAc,EAAE,EAClB,EAAE,OAAO,EAAE,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE,CACvC,CAAC;IACF,OAAO,QAAQ,CAAC,IAAI,CAAC;AACvB,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,gBAAgB,CACpC,MAAc,EACd,KAAa;IAEb,MAAM,MAAM,GAAG,gBAAgB,EAAE,CAAC;IAClC,MAAM,UAAU,GAAG,aAAa,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAChD,MAAM,QAAQ,GAAG,MAAM,KAAK,CAAC,MAAM,CACjC,GAAG,UAAU,iBAAiB,MAAM,CAAC,SAAS,UAAU,MAAM,iBAAiB,KAAK,EAAE,EACtF,EAAE,OAAO,EAAE,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE,CACvC,CAAC;IACF,IAAI,QAAQ,CAAC,MAAM,KAAK,GAAG,EAAE,CAAC;QAC5B,OAAO,EAAE,OAAO,EAAE,cAAc,KAAK,sBAAsB,MAAM,GAAG,EAAE,CAAC;IACzE,CAAC;IACD,OAAO,QAAQ,CAAC,IAAI,CAAC;AACvB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/commands/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/commands/index.ts"],"names":[],"mappings":"AAWA,wBAAsB,cAAc,CAClC,QAAQ,EAAE,MAAM,EAChB,MAAM,EAAE,MAAM,EACd,OAAO,EAAE,GAAG,GACX,OAAO,CAAC,GAAG,CAAC,CA+Ed"}
|