@nanobpm/nano-workforce 0.85.3 → 0.87.0
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/CHANGELOG.md +14 -0
- package/app/agentic/channel.test.ts +71 -0
- package/app/agentic/channel.ts +17 -1
- package/app/agentic/vocab/README.md +37 -0
- package/app/agentic/vocab/crew-vocab.test.ts +86 -0
- package/app/agentic/vocab/crew-vocab.ts +147 -0
- package/app/agentic/vocab/demand-report.test.ts +97 -0
- package/app/agentic/vocab/demand-report.ts +155 -0
- package/app/agentic/vocab/enrol.test.ts +49 -0
- package/app/agentic/vocab/enrol.ts +74 -0
- package/app/agentic/vocab/publish.test.ts +20 -0
- package/app/agentic/vocab/publish.ts +38 -0
- package/openapi.yaml +350 -0
- package/operations/enrolAgenticWorker.test.ts +89 -0
- package/operations/enrolAgenticWorker.ts +91 -0
- package/operations/getAgenticRegistry.test.ts +53 -0
- package/operations/getAgenticRegistry.ts +25 -0
- package/operations/getAgenticVocab.test.ts +48 -0
- package/operations/getAgenticVocab.ts +20 -0
- package/package.json +1 -1
- package/pages/board/board.css +119 -0
- package/pages/board/embed.html +30 -0
- package/pages/board/mount.js +131 -0
- package/pages/board/standalone.html +37 -0
- package/pages/board.page.json +51 -0
- package/pages/cockpit/standalone.html +15 -5
- package/pages/cockpit.page.json +2 -1
- package/pages/epic-detail.page.json +2 -1
- package/pages/epic.page.json +2 -1
- package/pages/feature.page.json +2 -1
- package/pages/home.page.json +4 -0
- package/pages/lineage.page.json +2 -1
- package/pages/overview.page.json +2 -1
- package/pages/tasks.page.json +4 -0
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
{ "label": "Epics", "page": "epic" },
|
|
17
17
|
{ "label": "Feature", "page": "feature" },
|
|
18
18
|
{ "label": "Tasks", "page": "tasks" },
|
|
19
|
-
{ "label": "Cockpit", "page": "cockpit" }
|
|
19
|
+
{ "label": "Cockpit", "page": "cockpit" },
|
|
20
|
+
{ "label": "Board", "page": "board" }
|
|
20
21
|
]
|
|
21
22
|
}
|
|
22
23
|
},
|
package/pages/epic.page.json
CHANGED
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
{ "label": "Epics", "page": "epic" },
|
|
17
17
|
{ "label": "Feature", "page": "feature" },
|
|
18
18
|
{ "label": "Tasks", "page": "tasks" },
|
|
19
|
-
{ "label": "Cockpit", "page": "cockpit" }
|
|
19
|
+
{ "label": "Cockpit", "page": "cockpit" },
|
|
20
|
+
{ "label": "Board", "page": "board" }
|
|
20
21
|
]
|
|
21
22
|
}
|
|
22
23
|
},
|
package/pages/feature.page.json
CHANGED
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
{ "label": "Epics", "page": "epic" },
|
|
17
17
|
{ "label": "Feature", "page": "feature" },
|
|
18
18
|
{ "label": "Tasks", "page": "tasks" },
|
|
19
|
-
{ "label": "Cockpit", "page": "cockpit" }
|
|
19
|
+
{ "label": "Cockpit", "page": "cockpit" },
|
|
20
|
+
{ "label": "Board", "page": "board" }
|
|
20
21
|
]
|
|
21
22
|
}
|
|
22
23
|
},
|
package/pages/home.page.json
CHANGED
package/pages/lineage.page.json
CHANGED
|
@@ -15,7 +15,8 @@
|
|
|
15
15
|
{ "label": "Epics", "page": "epic" },
|
|
16
16
|
{ "label": "Feature", "page": "feature" },
|
|
17
17
|
{ "label": "Tasks", "page": "tasks" },
|
|
18
|
-
{ "label": "Cockpit", "page": "cockpit" }
|
|
18
|
+
{ "label": "Cockpit", "page": "cockpit" },
|
|
19
|
+
{ "label": "Board", "page": "board" }
|
|
19
20
|
],
|
|
20
21
|
"sticky": true
|
|
21
22
|
}
|
package/pages/overview.page.json
CHANGED
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
{ "label": "Epics", "page": "epic" },
|
|
17
17
|
{ "label": "Feature", "page": "feature" },
|
|
18
18
|
{ "label": "Tasks", "page": "tasks" },
|
|
19
|
-
{ "label": "Cockpit", "page": "cockpit" }
|
|
19
|
+
{ "label": "Cockpit", "page": "cockpit" },
|
|
20
|
+
{ "label": "Board", "page": "board" }
|
|
20
21
|
]
|
|
21
22
|
}
|
|
22
23
|
},
|