@minions-tasks/sdk 0.2.2
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 +25 -0
- package/dist/index.d.ts +17 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +20 -0
- package/dist/index.js.map +1 -0
- package/dist/schemas/index.d.ts +16 -0
- package/dist/schemas/index.d.ts.map +1 -0
- package/dist/schemas/index.js +153 -0
- package/dist/schemas/index.js.map +1 -0
- package/package.json +47 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Mehdi Nabhani
|
|
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.
|
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# @minions-tasks/sdk
|
|
2
|
+
|
|
3
|
+
Task and work management across agents, humans, and workflows
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @minions-tasks/sdk minions-sdk
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { createMinion } from '@minions-tasks/sdk';
|
|
15
|
+
|
|
16
|
+
// TODO: Add your SDK's usage example here
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## API
|
|
20
|
+
|
|
21
|
+
See the [documentation](https://tasks.minions.help) for full API reference.
|
|
22
|
+
|
|
23
|
+
## License
|
|
24
|
+
|
|
25
|
+
[MIT](../../LICENSE)
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Minions Tasks SDK
|
|
3
|
+
*
|
|
4
|
+
* Task and work management across agents, humans, and workflows
|
|
5
|
+
*
|
|
6
|
+
* @module @minions-tasks/sdk
|
|
7
|
+
*/
|
|
8
|
+
export declare const VERSION = "0.1.0";
|
|
9
|
+
/**
|
|
10
|
+
* Example: Create a client instance for Minions Tasks.
|
|
11
|
+
* Replace this with your actual SDK entry point.
|
|
12
|
+
*/
|
|
13
|
+
export declare function createClient(options?: {}): {
|
|
14
|
+
version: string;
|
|
15
|
+
};
|
|
16
|
+
export * from './schemas/index.js';
|
|
17
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,eAAO,MAAM,OAAO,UAAU,CAAC;AAE/B;;;GAGG;AACH,wBAAgB,YAAY,CAAC,OAAO,KAAK;;EAKxC;AAED,cAAc,oBAAoB,CAAC"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Minions Tasks SDK
|
|
3
|
+
*
|
|
4
|
+
* Task and work management across agents, humans, and workflows
|
|
5
|
+
*
|
|
6
|
+
* @module @minions-tasks/sdk
|
|
7
|
+
*/
|
|
8
|
+
export const VERSION = '0.1.0';
|
|
9
|
+
/**
|
|
10
|
+
* Example: Create a client instance for Minions Tasks.
|
|
11
|
+
* Replace this with your actual SDK entry point.
|
|
12
|
+
*/
|
|
13
|
+
export function createClient(options = {}) {
|
|
14
|
+
return {
|
|
15
|
+
version: VERSION,
|
|
16
|
+
...options,
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
export * from './schemas/index.js';
|
|
20
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,MAAM,CAAC,MAAM,OAAO,GAAG,OAAO,CAAC;AAE/B;;;GAGG;AACH,MAAM,UAAU,YAAY,CAAC,OAAO,GAAG,EAAE;IACrC,OAAO;QACH,OAAO,EAAE,OAAO;QAChB,GAAG,OAAO;KACb,CAAC;AACN,CAAC;AAED,cAAc,oBAAoB,CAAC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @module @minions-tasks/sdk/schemas
|
|
3
|
+
* Custom MinionType schemas for Minions Tasks.
|
|
4
|
+
*/
|
|
5
|
+
import type { MinionType } from 'minions-sdk';
|
|
6
|
+
export declare const taskType: MinionType;
|
|
7
|
+
export declare const tasklistType: MinionType;
|
|
8
|
+
export declare const taskdependencyType: MinionType;
|
|
9
|
+
export declare const recurringtaskType: MinionType;
|
|
10
|
+
export declare const taskassignmentType: MinionType;
|
|
11
|
+
export declare const taskcheckpointType: MinionType;
|
|
12
|
+
export declare const taskhistoryentryType: MinionType;
|
|
13
|
+
export declare const taskcommentType: MinionType;
|
|
14
|
+
export declare const taskoutcomeType: MinionType;
|
|
15
|
+
export declare const customTypes: MinionType[];
|
|
16
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/schemas/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAE9C,eAAO,MAAM,QAAQ,EAAE,UAsBtB,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,UAc1B,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,UAWhC,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,UAc/B,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,UAchC,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,UAYhC,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,UAclC,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,UAc7B,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,UAa7B,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,UAAU,EAUnC,CAAC"}
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @module @minions-tasks/sdk/schemas
|
|
3
|
+
* Custom MinionType schemas for Minions Tasks.
|
|
4
|
+
*/
|
|
5
|
+
export const taskType = {
|
|
6
|
+
id: 'tasks-task',
|
|
7
|
+
name: 'Task',
|
|
8
|
+
slug: 'task',
|
|
9
|
+
description: 'A unit of work to be done, assignable to a human or agent.',
|
|
10
|
+
icon: '✅',
|
|
11
|
+
schema: [
|
|
12
|
+
{ name: 'title', type: 'string', label: 'title' },
|
|
13
|
+
{ name: 'description', type: 'string', label: 'description' },
|
|
14
|
+
{ name: 'status', type: 'select', label: 'status' },
|
|
15
|
+
{ name: 'priority', type: 'select', label: 'priority' },
|
|
16
|
+
{ name: 'assigneeId', type: 'string', label: 'assigneeId' },
|
|
17
|
+
{ name: 'assigneeType', type: 'select', label: 'assigneeType' },
|
|
18
|
+
{ name: 'createdBy', type: 'string', label: 'createdBy' },
|
|
19
|
+
{ name: 'createdAt', type: 'string', label: 'createdAt' },
|
|
20
|
+
{ name: 'dueAt', type: 'string', label: 'dueAt' },
|
|
21
|
+
{ name: 'completedAt', type: 'string', label: 'completedAt' },
|
|
22
|
+
{ name: 'tags', type: 'string', label: 'tags' },
|
|
23
|
+
{ name: 'parentTaskId', type: 'string', label: 'parentTaskId' },
|
|
24
|
+
{ name: 'contextRefType', type: 'string', label: 'contextRefType' },
|
|
25
|
+
{ name: 'contextRefId', type: 'string', label: 'contextRefId' },
|
|
26
|
+
],
|
|
27
|
+
};
|
|
28
|
+
export const tasklistType = {
|
|
29
|
+
id: 'tasks-task-list',
|
|
30
|
+
name: 'Task list',
|
|
31
|
+
slug: 'task-list',
|
|
32
|
+
description: 'An ordered or unordered collection of tasks with a shared purpose.',
|
|
33
|
+
icon: '📋',
|
|
34
|
+
schema: [
|
|
35
|
+
{ name: 'name', type: 'string', label: 'name' },
|
|
36
|
+
{ name: 'description', type: 'string', label: 'description' },
|
|
37
|
+
{ name: 'taskIds', type: 'string', label: 'taskIds' },
|
|
38
|
+
{ name: 'ordered', type: 'boolean', label: 'ordered' },
|
|
39
|
+
{ name: 'ownerId', type: 'string', label: 'ownerId' },
|
|
40
|
+
{ name: 'groupId', type: 'string', label: 'groupId' },
|
|
41
|
+
],
|
|
42
|
+
};
|
|
43
|
+
export const taskdependencyType = {
|
|
44
|
+
id: 'tasks-task-dependency',
|
|
45
|
+
name: 'Task dependency',
|
|
46
|
+
slug: 'task-dependency',
|
|
47
|
+
description: 'A blocking or relational dependency between two tasks.',
|
|
48
|
+
icon: '🔗',
|
|
49
|
+
schema: [
|
|
50
|
+
{ name: 'taskId', type: 'string', label: 'taskId' },
|
|
51
|
+
{ name: 'dependsOnTaskId', type: 'string', label: 'dependsOnTaskId' },
|
|
52
|
+
{ name: 'type', type: 'select', label: 'type' },
|
|
53
|
+
],
|
|
54
|
+
};
|
|
55
|
+
export const recurringtaskType = {
|
|
56
|
+
id: 'tasks-recurring-task',
|
|
57
|
+
name: 'Recurring task',
|
|
58
|
+
slug: 'recurring-task',
|
|
59
|
+
description: 'A task template that spawns new instances on a schedule.',
|
|
60
|
+
icon: '🔁',
|
|
61
|
+
schema: [
|
|
62
|
+
{ name: 'templateTaskId', type: 'string', label: 'templateTaskId' },
|
|
63
|
+
{ name: 'schedule', type: 'string', label: 'schedule' },
|
|
64
|
+
{ name: 'nextRunAt', type: 'string', label: 'nextRunAt' },
|
|
65
|
+
{ name: 'lastRunAt', type: 'string', label: 'lastRunAt' },
|
|
66
|
+
{ name: 'spawnedTaskIds', type: 'string', label: 'spawnedTaskIds' },
|
|
67
|
+
{ name: 'status', type: 'select', label: 'status' },
|
|
68
|
+
],
|
|
69
|
+
};
|
|
70
|
+
export const taskassignmentType = {
|
|
71
|
+
id: 'tasks-task-assignment',
|
|
72
|
+
name: 'Task assignment',
|
|
73
|
+
slug: 'task-assignment',
|
|
74
|
+
description: 'An explicit assignment of a task to a person or agent with a role.',
|
|
75
|
+
icon: '👤',
|
|
76
|
+
schema: [
|
|
77
|
+
{ name: 'taskId', type: 'string', label: 'taskId' },
|
|
78
|
+
{ name: 'assigneeId', type: 'string', label: 'assigneeId' },
|
|
79
|
+
{ name: 'assigneeType', type: 'select', label: 'assigneeType' },
|
|
80
|
+
{ name: 'assignedAt', type: 'string', label: 'assignedAt' },
|
|
81
|
+
{ name: 'assignedBy', type: 'string', label: 'assignedBy' },
|
|
82
|
+
{ name: 'role', type: 'select', label: 'role' },
|
|
83
|
+
],
|
|
84
|
+
};
|
|
85
|
+
export const taskcheckpointType = {
|
|
86
|
+
id: 'tasks-task-checkpoint',
|
|
87
|
+
name: 'Task checkpoint',
|
|
88
|
+
slug: 'task-checkpoint',
|
|
89
|
+
description: 'A named milestone or progress marker within a task.',
|
|
90
|
+
icon: '🚩',
|
|
91
|
+
schema: [
|
|
92
|
+
{ name: 'taskId', type: 'string', label: 'taskId' },
|
|
93
|
+
{ name: 'label', type: 'string', label: 'label' },
|
|
94
|
+
{ name: 'completedAt', type: 'string', label: 'completedAt' },
|
|
95
|
+
{ name: 'notes', type: 'string', label: 'notes' },
|
|
96
|
+
],
|
|
97
|
+
};
|
|
98
|
+
export const taskhistoryentryType = {
|
|
99
|
+
id: 'tasks-task-history-entry',
|
|
100
|
+
name: 'Task history entry',
|
|
101
|
+
slug: 'task-history-entry',
|
|
102
|
+
description: 'An immutable log of a single field change on a task.',
|
|
103
|
+
icon: '🕰️',
|
|
104
|
+
schema: [
|
|
105
|
+
{ name: 'taskId', type: 'string', label: 'taskId' },
|
|
106
|
+
{ name: 'changedAt', type: 'string', label: 'changedAt' },
|
|
107
|
+
{ name: 'changedBy', type: 'string', label: 'changedBy' },
|
|
108
|
+
{ name: 'field', type: 'string', label: 'field' },
|
|
109
|
+
{ name: 'from', type: 'string', label: 'from' },
|
|
110
|
+
{ name: 'to', type: 'string', label: 'to' },
|
|
111
|
+
],
|
|
112
|
+
};
|
|
113
|
+
export const taskcommentType = {
|
|
114
|
+
id: 'tasks-task-comment',
|
|
115
|
+
name: 'Task comment',
|
|
116
|
+
slug: 'task-comment',
|
|
117
|
+
description: 'A comment or note left on a task by a human or agent.',
|
|
118
|
+
icon: '💬',
|
|
119
|
+
schema: [
|
|
120
|
+
{ name: 'taskId', type: 'string', label: 'taskId' },
|
|
121
|
+
{ name: 'authorId', type: 'string', label: 'authorId' },
|
|
122
|
+
{ name: 'authorType', type: 'select', label: 'authorType' },
|
|
123
|
+
{ name: 'body', type: 'string', label: 'body' },
|
|
124
|
+
{ name: 'createdAt', type: 'string', label: 'createdAt' },
|
|
125
|
+
{ name: 'resolvedAt', type: 'string', label: 'resolvedAt' },
|
|
126
|
+
],
|
|
127
|
+
};
|
|
128
|
+
export const taskoutcomeType = {
|
|
129
|
+
id: 'tasks-task-outcome',
|
|
130
|
+
name: 'Task outcome',
|
|
131
|
+
slug: 'task-outcome',
|
|
132
|
+
description: 'The recorded result of a completed or failed task, including lessons learned.',
|
|
133
|
+
icon: '🎯',
|
|
134
|
+
schema: [
|
|
135
|
+
{ name: 'taskId', type: 'string', label: 'taskId' },
|
|
136
|
+
{ name: 'result', type: 'select', label: 'result' },
|
|
137
|
+
{ name: 'summary', type: 'string', label: 'summary' },
|
|
138
|
+
{ name: 'artifactIds', type: 'string', label: 'artifactIds' },
|
|
139
|
+
{ name: 'lessons', type: 'string', label: 'lessons' },
|
|
140
|
+
],
|
|
141
|
+
};
|
|
142
|
+
export const customTypes = [
|
|
143
|
+
taskType,
|
|
144
|
+
tasklistType,
|
|
145
|
+
taskdependencyType,
|
|
146
|
+
recurringtaskType,
|
|
147
|
+
taskassignmentType,
|
|
148
|
+
taskcheckpointType,
|
|
149
|
+
taskhistoryentryType,
|
|
150
|
+
taskcommentType,
|
|
151
|
+
taskoutcomeType,
|
|
152
|
+
];
|
|
153
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/schemas/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAIH,MAAM,CAAC,MAAM,QAAQ,GAAe;IAClC,EAAE,EAAE,YAAY;IAChB,IAAI,EAAE,MAAM;IACZ,IAAI,EAAE,MAAM;IACZ,WAAW,EAAE,4DAA4D;IACzE,IAAI,EAAE,GAAG;IACT,MAAM,EAAE;QACN,EAAE,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,OAAO,EAAE;QACjD,EAAE,IAAI,EAAE,aAAa,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,aAAa,EAAE;QAC7D,EAAE,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,QAAQ,EAAE;QACnD,EAAE,IAAI,EAAE,UAAU,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,UAAU,EAAE;QACvD,EAAE,IAAI,EAAE,YAAY,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,YAAY,EAAE;QAC3D,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,cAAc,EAAE;QAC/D,EAAE,IAAI,EAAE,WAAW,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,WAAW,EAAE;QACzD,EAAE,IAAI,EAAE,WAAW,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,WAAW,EAAE;QACzD,EAAE,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,OAAO,EAAE;QACjD,EAAE,IAAI,EAAE,aAAa,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,aAAa,EAAE;QAC7D,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,EAAE;QAC/C,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,cAAc,EAAE;QAC/D,EAAE,IAAI,EAAE,gBAAgB,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,gBAAgB,EAAE;QACnE,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,cAAc,EAAE;KAChE;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,YAAY,GAAe;IACtC,EAAE,EAAE,iBAAiB;IACrB,IAAI,EAAE,WAAW;IACjB,IAAI,EAAE,WAAW;IACjB,WAAW,EAAE,oEAAoE;IACjF,IAAI,EAAE,IAAI;IACV,MAAM,EAAE;QACN,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,EAAE;QAC/C,EAAE,IAAI,EAAE,aAAa,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,aAAa,EAAE;QAC7D,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,SAAS,EAAE;QACrD,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,SAAS,EAAE,KAAK,EAAE,SAAS,EAAE;QACtD,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,SAAS,EAAE;QACrD,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,SAAS,EAAE;KACtD;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,kBAAkB,GAAe;IAC5C,EAAE,EAAE,uBAAuB;IAC3B,IAAI,EAAE,iBAAiB;IACvB,IAAI,EAAE,iBAAiB;IACvB,WAAW,EAAE,wDAAwD;IACrE,IAAI,EAAE,IAAI;IACV,MAAM,EAAE;QACN,EAAE,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,QAAQ,EAAE;QACnD,EAAE,IAAI,EAAE,iBAAiB,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,iBAAiB,EAAE;QACrE,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,EAAE;KAChD;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,iBAAiB,GAAe;IAC3C,EAAE,EAAE,sBAAsB;IAC1B,IAAI,EAAE,gBAAgB;IACtB,IAAI,EAAE,gBAAgB;IACtB,WAAW,EAAE,0DAA0D;IACvE,IAAI,EAAE,IAAI;IACV,MAAM,EAAE;QACN,EAAE,IAAI,EAAE,gBAAgB,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,gBAAgB,EAAE;QACnE,EAAE,IAAI,EAAE,UAAU,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,UAAU,EAAE;QACvD,EAAE,IAAI,EAAE,WAAW,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,WAAW,EAAE;QACzD,EAAE,IAAI,EAAE,WAAW,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,WAAW,EAAE;QACzD,EAAE,IAAI,EAAE,gBAAgB,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,gBAAgB,EAAE;QACnE,EAAE,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,QAAQ,EAAE;KACpD;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,kBAAkB,GAAe;IAC5C,EAAE,EAAE,uBAAuB;IAC3B,IAAI,EAAE,iBAAiB;IACvB,IAAI,EAAE,iBAAiB;IACvB,WAAW,EAAE,oEAAoE;IACjF,IAAI,EAAE,IAAI;IACV,MAAM,EAAE;QACN,EAAE,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,QAAQ,EAAE;QACnD,EAAE,IAAI,EAAE,YAAY,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,YAAY,EAAE;QAC3D,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,cAAc,EAAE;QAC/D,EAAE,IAAI,EAAE,YAAY,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,YAAY,EAAE;QAC3D,EAAE,IAAI,EAAE,YAAY,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,YAAY,EAAE;QAC3D,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,EAAE;KAChD;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,kBAAkB,GAAe;IAC5C,EAAE,EAAE,uBAAuB;IAC3B,IAAI,EAAE,iBAAiB;IACvB,IAAI,EAAE,iBAAiB;IACvB,WAAW,EAAE,qDAAqD;IAClE,IAAI,EAAE,IAAI;IACV,MAAM,EAAE;QACN,EAAE,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,QAAQ,EAAE;QACnD,EAAE,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,OAAO,EAAE;QACjD,EAAE,IAAI,EAAE,aAAa,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,aAAa,EAAE;QAC7D,EAAE,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,OAAO,EAAE;KAClD;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,oBAAoB,GAAe;IAC9C,EAAE,EAAE,0BAA0B;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,IAAI,EAAE,oBAAoB;IAC1B,WAAW,EAAE,sDAAsD;IACnE,IAAI,EAAE,KAAK;IACX,MAAM,EAAE;QACN,EAAE,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,QAAQ,EAAE;QACnD,EAAE,IAAI,EAAE,WAAW,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,WAAW,EAAE;QACzD,EAAE,IAAI,EAAE,WAAW,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,WAAW,EAAE;QACzD,EAAE,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,OAAO,EAAE;QACjD,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,EAAE;QAC/C,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,IAAI,EAAE;KAC5C;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,eAAe,GAAe;IACzC,EAAE,EAAE,oBAAoB;IACxB,IAAI,EAAE,cAAc;IACpB,IAAI,EAAE,cAAc;IACpB,WAAW,EAAE,uDAAuD;IACpE,IAAI,EAAE,IAAI;IACV,MAAM,EAAE;QACN,EAAE,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,QAAQ,EAAE;QACnD,EAAE,IAAI,EAAE,UAAU,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,UAAU,EAAE;QACvD,EAAE,IAAI,EAAE,YAAY,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,YAAY,EAAE;QAC3D,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,EAAE;QAC/C,EAAE,IAAI,EAAE,WAAW,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,WAAW,EAAE;QACzD,EAAE,IAAI,EAAE,YAAY,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,YAAY,EAAE;KAC5D;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,eAAe,GAAe;IACzC,EAAE,EAAE,oBAAoB;IACxB,IAAI,EAAE,cAAc;IACpB,IAAI,EAAE,cAAc;IACpB,WAAW,EAAE,+EAA+E;IAC5F,IAAI,EAAE,IAAI;IACV,MAAM,EAAE;QACN,EAAE,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,QAAQ,EAAE;QACnD,EAAE,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,QAAQ,EAAE;QACnD,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,SAAS,EAAE;QACrD,EAAE,IAAI,EAAE,aAAa,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,aAAa,EAAE;QAC7D,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,SAAS,EAAE;KACtD;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,WAAW,GAAiB;IACvC,QAAQ;IACR,YAAY;IACZ,kBAAkB;IAClB,iBAAiB;IACjB,kBAAkB;IAClB,kBAAkB;IAClB,oBAAoB;IACpB,eAAe;IACf,eAAe;CAChB,CAAC"}
|
package/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@minions-tasks/sdk",
|
|
3
|
+
"version": "0.2.2",
|
|
4
|
+
"description": "Task and work management across agents, humans, and workflows",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./dist/index.js",
|
|
11
|
+
"types": "./dist/index.d.ts"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"files": [
|
|
15
|
+
"dist",
|
|
16
|
+
"README.md"
|
|
17
|
+
],
|
|
18
|
+
"author": "Mehdi Nabhani <mehdi@the-mehdi.com> (https://the-mehdi.com)",
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"minions-sdk": "^0.2.2"
|
|
21
|
+
},
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"@types/node": "^25.3.0",
|
|
24
|
+
"typedoc": "^0.28.17",
|
|
25
|
+
"typedoc-plugin-markdown": "^4.10.0",
|
|
26
|
+
"typescript": "^5.9.3",
|
|
27
|
+
"vitest": "^4.0.18"
|
|
28
|
+
},
|
|
29
|
+
"keywords": [
|
|
30
|
+
"tasks",
|
|
31
|
+
"ai",
|
|
32
|
+
"minions"
|
|
33
|
+
],
|
|
34
|
+
"license": "MIT",
|
|
35
|
+
"repository": {
|
|
36
|
+
"type": "git",
|
|
37
|
+
"url": "https://github.com/mxn2020/minions-tasks"
|
|
38
|
+
},
|
|
39
|
+
"homepage": "https://tasks.minions.help",
|
|
40
|
+
"scripts": {
|
|
41
|
+
"build": "tsc",
|
|
42
|
+
"test": "vitest run",
|
|
43
|
+
"test:watch": "vitest",
|
|
44
|
+
"lint": "tsc --noEmit",
|
|
45
|
+
"docs": "typedoc"
|
|
46
|
+
}
|
|
47
|
+
}
|