@agent-team-foundation/first-tree-hub 0.6.0 → 0.6.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/{bootstrap-BnlTKa0H.mjs → bootstrap-Dq_k_6ZD.mjs} +32 -8
- package/dist/cli/index.mjs +12 -8
- package/dist/{core-B9bH7EjM.mjs → core-Dt3yNBTm.mjs} +454 -167
- package/dist/drizzle/0018_agent_visibility.sql +13 -0
- package/dist/drizzle/meta/0018_snapshot.json +1938 -0
- package/dist/drizzle/meta/_journal.json +7 -0
- package/dist/index.mjs +3 -3
- package/dist/web/assets/index-D7-5shxZ.js +310 -0
- package/dist/web/index.html +1 -1
- package/package.json +1 -1
- package/dist/web/assets/index-C_FKYVro.js +0 -310
|
@@ -127,6 +127,13 @@
|
|
|
127
127
|
"when": 1776729600000,
|
|
128
128
|
"tag": "0017_session_outputs_unique",
|
|
129
129
|
"breakpoints": true
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"idx": 18,
|
|
133
|
+
"version": "7",
|
|
134
|
+
"when": 1776816000000,
|
|
135
|
+
"tag": "0018_agent_visibility",
|
|
136
|
+
"breakpoints": true
|
|
130
137
|
}
|
|
131
138
|
]
|
|
132
139
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as getGitHubToken,
|
|
2
|
-
import { A as FirstTreeHubSDK, C as status, D as ClientRuntime, E as stopPostgres, O as createOwner, S as blank, T as isDockerAvailable, _ as checkServerConfig, a as formatCheckReport, b as checkWebSocket, c as onboardCreate, d as checkAgentConfigs, f as checkAgentTokens, g as checkNodeVersion, h as checkDocker, i as promptMissingFields, j as SdkError, k as hasUser, m as checkDatabase, n as isInteractive, p as checkClientConfig, r as promptAddAgent, s as onboardCheck, t as startServer, u as runMigrations, v as checkServerHealth, w as ensurePostgres, x as printResults, y as checkServerReachable } from "./core-
|
|
1
|
+
import { a as getGitHubToken, l as resolveAgentToken, o as getGitHubUsername, r as checkBootstrapStatus, s as loadAgentTokenByName, t as bootstrapToken, u as resolveServerUrl } from "./bootstrap-Dq_k_6ZD.mjs";
|
|
2
|
+
import { A as FirstTreeHubSDK, C as status, D as ClientRuntime, E as stopPostgres, O as createOwner, S as blank, T as isDockerAvailable, _ as checkServerConfig, a as formatCheckReport, b as checkWebSocket, c as onboardCreate, d as checkAgentConfigs, f as checkAgentTokens, g as checkNodeVersion, h as checkDocker, i as promptMissingFields, j as SdkError, k as hasUser, m as checkDatabase, n as isInteractive, p as checkClientConfig, r as promptAddAgent, s as onboardCheck, t as startServer, u as runMigrations, v as checkServerHealth, w as ensurePostgres, x as printResults, y as checkServerReachable } from "./core-Dt3yNBTm.mjs";
|
|
3
3
|
import { n as bindFeishuUser, t as bindFeishuBot } from "./feishu-Y4m2zFc3.mjs";
|
|
4
|
-
export { ClientRuntime, FirstTreeHubSDK, SdkError, bindFeishuBot, bindFeishuUser, blank, bootstrapToken, checkAgentConfigs, checkAgentTokens, checkBootstrapStatus, checkClientConfig, checkDatabase, checkDocker, checkNodeVersion, checkServerConfig, checkServerHealth, checkServerReachable, checkWebSocket, createOwner, ensurePostgres, formatCheckReport, getGitHubToken, getGitHubUsername, hasUser, isDockerAvailable, isInteractive, onboardCheck, onboardCreate, printResults, promptAddAgent, promptMissingFields, resolveAgentToken, resolveServerUrl, runMigrations, startServer, status, stopPostgres };
|
|
4
|
+
export { ClientRuntime, FirstTreeHubSDK, SdkError, bindFeishuBot, bindFeishuUser, blank, bootstrapToken, checkAgentConfigs, checkAgentTokens, checkBootstrapStatus, checkClientConfig, checkDatabase, checkDocker, checkNodeVersion, checkServerConfig, checkServerHealth, checkServerReachable, checkWebSocket, createOwner, ensurePostgres, formatCheckReport, getGitHubToken, getGitHubUsername, hasUser, isDockerAvailable, isInteractive, loadAgentTokenByName, onboardCheck, onboardCreate, printResults, promptAddAgent, promptMissingFields, resolveAgentToken, resolveServerUrl, runMigrations, startServer, status, stopPostgres };
|