kord-aios 3.3.0 → 3.3.1
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/cli/index.js +8 -8
- package/dist/index.d.ts +2 -2
- package/dist/index.js +3 -3
- package/package.json +8 -8
package/dist/cli/index.js
CHANGED
|
@@ -21800,7 +21800,7 @@ function scaffoldProject(options) {
|
|
|
21800
21800
|
// package.json
|
|
21801
21801
|
var package_default = {
|
|
21802
21802
|
name: "kord-aios",
|
|
21803
|
-
version: "3.3.
|
|
21803
|
+
version: "3.3.1",
|
|
21804
21804
|
description: "Kord AIOS: multi-model orchestration with story-driven development methodology",
|
|
21805
21805
|
main: "dist/index.js",
|
|
21806
21806
|
types: "dist/index.d.ts",
|
|
@@ -21882,13 +21882,13 @@ var package_default = {
|
|
|
21882
21882
|
typescript: "^5.7.3"
|
|
21883
21883
|
},
|
|
21884
21884
|
optionalDependencies: {
|
|
21885
|
-
"kord-aios-darwin-arm64": "3.3.
|
|
21886
|
-
"kord-aios-darwin-x64": "3.3.
|
|
21887
|
-
"kord-aios-linux-arm64": "3.3.
|
|
21888
|
-
"kord-aios-linux-arm64-musl": "3.3.
|
|
21889
|
-
"kord-aios-linux-x64": "3.3.
|
|
21890
|
-
"kord-aios-linux-x64-musl": "3.3.
|
|
21891
|
-
"kord-aios-windows-x64": "3.3.
|
|
21885
|
+
"kord-aios-darwin-arm64": "3.3.1",
|
|
21886
|
+
"kord-aios-darwin-x64": "3.3.1",
|
|
21887
|
+
"kord-aios-linux-arm64": "3.3.1",
|
|
21888
|
+
"kord-aios-linux-arm64-musl": "3.3.1",
|
|
21889
|
+
"kord-aios-linux-x64": "3.3.1",
|
|
21890
|
+
"kord-aios-linux-x64-musl": "3.3.1",
|
|
21891
|
+
"kord-aios-windows-x64": "3.3.1"
|
|
21892
21892
|
},
|
|
21893
21893
|
trustedDependencies: [
|
|
21894
21894
|
"@ast-grep/cli",
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Plugin } from "@opencode-ai/plugin";
|
|
2
|
-
declare const
|
|
3
|
-
export default
|
|
2
|
+
declare const KordAIOSPlugin: Plugin;
|
|
3
|
+
export default KordAIOSPlugin;
|
|
4
4
|
export type { OhMyOpenCodeConfig, AgentName, AgentOverrideConfig, AgentOverrides, McpName, HookName, BuiltinCommandName, } from "./config";
|
|
5
5
|
export type { ConfigLoadError } from "./shared/config-errors";
|
package/dist/index.js
CHANGED
|
@@ -71086,8 +71086,8 @@ function createConfigHandler(deps) {
|
|
|
71086
71086
|
};
|
|
71087
71087
|
}
|
|
71088
71088
|
// src/index.ts
|
|
71089
|
-
var
|
|
71090
|
-
log("[
|
|
71089
|
+
var KordAIOSPlugin = async (ctx) => {
|
|
71090
|
+
log("[KordAIOS] ENTRY - plugin loading", {
|
|
71091
71091
|
directory: ctx.directory
|
|
71092
71092
|
});
|
|
71093
71093
|
injectServerAuthIntoClient(ctx.client);
|
|
@@ -71639,7 +71639,7 @@ var OhMyOpenCodePlugin = async (ctx) => {
|
|
|
71639
71639
|
}
|
|
71640
71640
|
};
|
|
71641
71641
|
};
|
|
71642
|
-
var src_default =
|
|
71642
|
+
var src_default = KordAIOSPlugin;
|
|
71643
71643
|
export {
|
|
71644
71644
|
src_default as default
|
|
71645
71645
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kord-aios",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.1",
|
|
4
4
|
"description": "Kord AIOS: multi-model orchestration with story-driven development methodology",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -82,13 +82,13 @@
|
|
|
82
82
|
"typescript": "^5.7.3"
|
|
83
83
|
},
|
|
84
84
|
"optionalDependencies": {
|
|
85
|
-
"kord-aios-darwin-arm64": "3.3.
|
|
86
|
-
"kord-aios-darwin-x64": "3.3.
|
|
87
|
-
"kord-aios-linux-arm64": "3.3.
|
|
88
|
-
"kord-aios-linux-arm64-musl": "3.3.
|
|
89
|
-
"kord-aios-linux-x64": "3.3.
|
|
90
|
-
"kord-aios-linux-x64-musl": "3.3.
|
|
91
|
-
"kord-aios-windows-x64": "3.3.
|
|
85
|
+
"kord-aios-darwin-arm64": "3.3.1",
|
|
86
|
+
"kord-aios-darwin-x64": "3.3.1",
|
|
87
|
+
"kord-aios-linux-arm64": "3.3.1",
|
|
88
|
+
"kord-aios-linux-arm64-musl": "3.3.1",
|
|
89
|
+
"kord-aios-linux-x64": "3.3.1",
|
|
90
|
+
"kord-aios-linux-x64-musl": "3.3.1",
|
|
91
|
+
"kord-aios-windows-x64": "3.3.1"
|
|
92
92
|
},
|
|
93
93
|
"trustedDependencies": [
|
|
94
94
|
"@ast-grep/cli",
|