gencow 0.1.30 → 0.1.32

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gencow",
3
- "version": "0.1.30",
3
+ "version": "0.1.32",
4
4
  "description": "Gencow — Backend OS for AI Agents",
5
5
  "type": "module",
6
6
  "bin": {
package/server/index.js CHANGED
@@ -72246,15 +72246,20 @@ async function main() {
72246
72246
  const dashboardUrl = `http://localhost:${port}/_dashboard`;
72247
72247
  const apiUrl = `http://localhost:${port}`;
72248
72248
  const wsUrl = `ws://localhost:${port}/ws`;
72249
- const stackStr = `${driver === "postgres" ? "PostgreSQL" : "PGlite"} + Hono + Drizzle`;
72249
+ const stackStr = `Bun + Hono + Drizzle + ${driver === "postgres" ? "PostgreSQL" : "PGlite"}`;
72250
+ const W = 58;
72251
+ const pad = (s) => " " + s.padEnd(W);
72252
+ const line = "\u2550".repeat(W + 2);
72250
72253
  console.log(`
72251
- \x1B[1m\x1B[32m\u{1F680} Gencow API Server Running\x1B[0m
72252
-
72253
- \x1B[36mAPI \x1B[0m ${apiUrl}
72254
- \x1B[36mWebSocket \x1B[0m ${wsUrl}
72255
- \x1B[36mDashboard \x1B[0m ${dashboardUrl}
72256
-
72257
- \x1B[2mStack: Bun + ${stackStr}\x1B[0m
72254
+ \u2554${line}\u2557
72255
+ \u2551${pad("\u{1F680} Gencow API Server Running")}\u2551
72256
+ \u2551${pad("")}\u2551
72257
+ \u2551${pad(`API: ${apiUrl}`)}\u2551
72258
+ \u2551${pad(`WebSocket: ${wsUrl}`)}\u2551
72259
+ \u2551${pad(`Dashboard: ${dashboardUrl}`)}\u2551
72260
+ \u2551${pad("")}\u2551
72261
+ \u2551${pad(`Stack: ${stackStr}`)}\u2551
72262
+ \u255A${line}\u255D
72258
72263
  `);
72259
72264
  if (IS_BAAS) {
72260
72265
  console.log(`[metering] BaaS mode \u2014 flushing to ${METERING_URL} every 10s`);