@integrity-labs/agt-cli 0.9.10 → 0.10.0
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/bin/agt.js +64 -7
- package/dist/bin/agt.js.map +1 -1
- package/dist/{chunk-IT34G2Y2.js → chunk-UWH2MMKY.js} +38 -4
- package/dist/chunk-UWH2MMKY.js.map +1 -0
- package/dist/lib/manager-worker.js +50 -3
- package/dist/lib/manager-worker.js.map +1 -1
- package/mcp/index.js +70 -0
- package/package.json +2 -1
- package/dist/chunk-IT34G2Y2.js.map +0 -1
|
@@ -195,6 +195,26 @@ var INTEGRATION_REGISTRY = [
|
|
|
195
195
|
],
|
|
196
196
|
docs_url: "https://v0.dev/docs/api/platform/overview"
|
|
197
197
|
},
|
|
198
|
+
{
|
|
199
|
+
id: "pika",
|
|
200
|
+
name: "Pika",
|
|
201
|
+
category: "media",
|
|
202
|
+
description: "AI video meeting agent \u2014 join Google Meet and Zoom calls with a custom avatar and cloned voice via PikaStreaming",
|
|
203
|
+
supported_auth_types: ["api_key"],
|
|
204
|
+
capabilities: [
|
|
205
|
+
{ id: "pika:join-meeting", name: "Join Meeting", description: "Join a video meeting as an AI participant with avatar and voice", access: "write" },
|
|
206
|
+
{ id: "pika:leave-meeting", name: "Leave Meeting", description: "Leave an active video meeting session", access: "write" },
|
|
207
|
+
{ id: "pika:generate-avatar", name: "Generate Avatar", description: "Generate an AI avatar image for video calls", access: "write" },
|
|
208
|
+
{ id: "pika:clone-voice", name: "Clone Voice", description: "Clone a voice from an audio recording", access: "write" }
|
|
209
|
+
],
|
|
210
|
+
cli_tool: {
|
|
211
|
+
package: "pika-skills",
|
|
212
|
+
binary: "python3",
|
|
213
|
+
env_key: "PIKA_DEV_KEY",
|
|
214
|
+
skill_id: "pikastream-video-meeting"
|
|
215
|
+
},
|
|
216
|
+
docs_url: "https://github.com/Pika-Labs/Pika-Skills"
|
|
217
|
+
},
|
|
198
218
|
{
|
|
199
219
|
id: "custom",
|
|
200
220
|
name: "Custom Integration",
|
|
@@ -1885,10 +1905,19 @@ ${lines.join("\n")}
|
|
|
1885
1905
|
|
|
1886
1906
|
Check \`.claude/skills/\` for detailed usage instructions for each integration.
|
|
1887
1907
|
|
|
1908
|
+
`;
|
|
1909
|
+
}
|
|
1910
|
+
function buildPersonalitySection(seed) {
|
|
1911
|
+
if (!seed?.trim())
|
|
1912
|
+
return "";
|
|
1913
|
+
return `## Personality
|
|
1914
|
+
|
|
1915
|
+
${seed.trim()}
|
|
1916
|
+
|
|
1888
1917
|
`;
|
|
1889
1918
|
}
|
|
1890
1919
|
function generateClaudeMd(input) {
|
|
1891
|
-
const { frontmatter, role, description, resolvedChannels, team, consoleUrl, hasQmd, integrations, knowledge } = input;
|
|
1920
|
+
const { frontmatter, role, description, resolvedChannels, team, consoleUrl, hasQmd, integrations, knowledge, timezone, personalitySeed } = input;
|
|
1892
1921
|
const channelList = resolvedChannels?.length ? resolvedChannels.join(", ") : "none";
|
|
1893
1922
|
const roleDisplay = role ?? "Agent";
|
|
1894
1923
|
const desc = description?.trim();
|
|
@@ -1896,18 +1925,20 @@ function generateClaudeMd(input) {
|
|
|
1896
1925
|
const memorySection = buildMemorySection(hasQmd);
|
|
1897
1926
|
const integrationsSection = buildIntegrationsSection(integrations);
|
|
1898
1927
|
const knowledgeSection = buildKnowledgeSection2(knowledge);
|
|
1928
|
+
const personalitySection = buildPersonalitySection(personalitySeed);
|
|
1899
1929
|
return `# ${frontmatter.display_name}
|
|
1900
1930
|
|
|
1901
1931
|
You are **${frontmatter.display_name}**, **${roleDisplay}**${team ? ` at **${team.name}**` : ""}.
|
|
1902
1932
|
${desc ? `
|
|
1903
1933
|
${desc}
|
|
1904
1934
|
` : ""}
|
|
1905
|
-
## Identity
|
|
1935
|
+
${personalitySection}## Identity
|
|
1906
1936
|
|
|
1907
1937
|
- Code Name: ${frontmatter.code_name}
|
|
1908
1938
|
- Owner: ${frontmatter.owner.name}
|
|
1909
1939
|
- Environment: ${frontmatter.environment}
|
|
1910
1940
|
- Risk Tier: ${frontmatter.risk_tier}
|
|
1941
|
+
- Timezone: ${timezone?.trim() || "UTC"}
|
|
1911
1942
|
- Channels: ${channelList}
|
|
1912
1943
|
${resolvedChannels?.includes("slack") ? `
|
|
1913
1944
|
## Slack
|
|
@@ -2243,7 +2274,10 @@ var claudeCodeAdapter = {
|
|
|
2243
2274
|
consoleUrl: process.env["NEXT_PUBLIC_APP_URL"] || process.env["AGT_CONSOLE_URL"] || void 0,
|
|
2244
2275
|
hasQmd: input.integrations?.some((i) => i.definition_id === "qmd") ?? false,
|
|
2245
2276
|
integrations: integrationSummaries,
|
|
2246
|
-
knowledge: knowledgeRefs.length > 0 ? knowledgeRefs : void 0
|
|
2277
|
+
knowledge: knowledgeRefs.length > 0 ? knowledgeRefs : void 0,
|
|
2278
|
+
timezone: input.timezone,
|
|
2279
|
+
reportsTo: input.reportsTo,
|
|
2280
|
+
personalitySeed: input.personalitySeed
|
|
2247
2281
|
};
|
|
2248
2282
|
const artifacts = [
|
|
2249
2283
|
{ relativePath: "CLAUDE.md", content: generateClaudeMd(claudeMdInput) },
|
|
@@ -4827,4 +4861,4 @@ export {
|
|
|
4827
4861
|
detectDrift,
|
|
4828
4862
|
provision
|
|
4829
4863
|
};
|
|
4830
|
-
//# sourceMappingURL=chunk-
|
|
4864
|
+
//# sourceMappingURL=chunk-UWH2MMKY.js.map
|