yuan-lab-llm--clawmanager
71c7672545
* feat(skill-hub): add Skill Hub catalog, publish flow, and lite materialize pipeline Introduce Skill Hub for browsing, importing, publishing, and installing skills, with lite instance package materialization and runtime sync support. Co-authored-by: Cursor <cursoragent@cursor.com> * fix(skill-hub): remove token-governance hooks from Skill Hub PR Strip validateManagedRuntimeEnvironmentOverrides, network lock policy sync, and egress proxy audit wiring that belong to the upcoming token-usage work, so the Skill Hub branch compiles independently. Co-authored-by: Cursor <cursoragent@cursor.com> * fix(skill-hub): update migration number in materialize docs Co-authored-by: Cursor <cursoragent@cursor.com> * fix(skill-hub): make RuntimeAgentClient test stub and hub tests compile-safe Add ResyncInstanceSkills to the runtime pool handler fake client, and harden skill hub payload helpers/tests against nil storage/instance repos so go test passes. Co-authored-by: Cursor <cursoragent@cursor.com> * feat: add Skill Hub hardening with session usage tracking and egress governance Unify Skill Hub runtime sync improvements with session-token observability, egress network policy, and admin/instance usage reporting for reopenable PR. Co-authored-by: Cursor <cursoragent@cursor.com> * fix(skill-hub): repair CI tests and nested skill install * fix(ci): restore release deployment configuration --------- Co-authored-by: heshengran <heshengran@ieisystem.com> Co-authored-by: Cursor <cursoragent@cursor.com>
24 行
679 B
TypeScript
24 行
679 B
TypeScript
import mysql from "mysql2/promise";
|
|
import { env } from "./env.js";
|
|
|
|
export async function getInstanceGatewayToken(instanceId: number): Promise<string | null> {
|
|
const connection = await mysql.createConnection({
|
|
host: env.db.host,
|
|
port: env.db.port,
|
|
user: env.db.user,
|
|
password: env.db.password,
|
|
database: env.db.database,
|
|
});
|
|
try {
|
|
const [rows] = await connection.query<{ access_token: string | null }[]>(
|
|
"SELECT access_token FROM instances WHERE id = ? LIMIT 1",
|
|
[instanceId],
|
|
);
|
|
const row = rows[0];
|
|
const token = row?.access_token?.trim();
|
|
return token ? token : null;
|
|
} finally {
|
|
await connection.end();
|
|
}
|
|
}
|