@openthink/team 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/dist/index.js +49 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3048,11 +3048,59 @@ function readMonitoredOrgsFromEnv() {
|
|
|
3048
3048
|
return raw.split(",").map((s) => s.trim()).filter((s) => s.length > 0);
|
|
3049
3049
|
}
|
|
3050
3050
|
|
|
3051
|
+
// package.json
|
|
3052
|
+
var package_default = {
|
|
3053
|
+
name: "@openthink/team",
|
|
3054
|
+
version: "0.0.7",
|
|
3055
|
+
type: "module",
|
|
3056
|
+
description: "Source-agnostic vault-driven role pipeline for spawning Claude agents against tickets",
|
|
3057
|
+
bin: {
|
|
3058
|
+
oteam: "dist/index.js"
|
|
3059
|
+
},
|
|
3060
|
+
files: [
|
|
3061
|
+
"dist"
|
|
3062
|
+
],
|
|
3063
|
+
scripts: {
|
|
3064
|
+
build: "tsup && cp src/role-pipeline/assign-ticket.md dist/assign-ticket.md",
|
|
3065
|
+
dev: "tsx src/index.ts",
|
|
3066
|
+
typecheck: "tsc --noEmit",
|
|
3067
|
+
test: "node --test --import tsx 'tests/**/*.test.ts'",
|
|
3068
|
+
prepublishOnly: "npm run build"
|
|
3069
|
+
},
|
|
3070
|
+
homepage: "https://openthink.dev",
|
|
3071
|
+
repository: {
|
|
3072
|
+
type: "git",
|
|
3073
|
+
url: "git+https://github.com/OpenThinkAi/open-team.git"
|
|
3074
|
+
},
|
|
3075
|
+
keywords: [
|
|
3076
|
+
"cli",
|
|
3077
|
+
"agents",
|
|
3078
|
+
"vault",
|
|
3079
|
+
"role-pipeline",
|
|
3080
|
+
"ai",
|
|
3081
|
+
"local-first"
|
|
3082
|
+
],
|
|
3083
|
+
license: "MIT",
|
|
3084
|
+
engines: {
|
|
3085
|
+
node: ">=22.5.0"
|
|
3086
|
+
},
|
|
3087
|
+
dependencies: {
|
|
3088
|
+
"@anthropic-ai/claude-agent-sdk": "^0.2.114",
|
|
3089
|
+
commander: "^13.1.0"
|
|
3090
|
+
},
|
|
3091
|
+
devDependencies: {
|
|
3092
|
+
"@types/node": "^22.14.1",
|
|
3093
|
+
tsup: "^8.4.0",
|
|
3094
|
+
tsx: "^4.19.3",
|
|
3095
|
+
typescript: "^5.8.3"
|
|
3096
|
+
}
|
|
3097
|
+
};
|
|
3098
|
+
|
|
3051
3099
|
// src/index.ts
|
|
3052
3100
|
var program = new Command6();
|
|
3053
3101
|
program.name("oteam").description(
|
|
3054
3102
|
"Source-agnostic vault-driven role pipeline for spawning Claude agents against tickets"
|
|
3055
|
-
).version(
|
|
3103
|
+
).version(package_default.version);
|
|
3056
3104
|
async function handlePull(source, ref, opts) {
|
|
3057
3105
|
const result = await runPull({
|
|
3058
3106
|
source,
|