- src/prompts/atlas.ts — full Atlas system prompt (6-phase PM discovery flow) - src/tools/prd.ts — finalize_prd tool that signals PRD completion - src/agents/atlas.ts — Atlas agent config (Tier A, conversational) - src/atlas.ts — atlasChat() multi-turn session handler - server.ts — /atlas/chat, /atlas/sessions endpoints Made-with: Cursor
22 lines
1.1 KiB
JavaScript
22 lines
1.1 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.pick = exports.allAgents = exports.getAgent = exports.AGENTS = void 0;
|
|
// Import prompt templates first — side effects register them before agents reference promptIds
|
|
require("../prompts/orchestrator");
|
|
require("../prompts/coder");
|
|
require("../prompts/pm");
|
|
require("../prompts/marketing");
|
|
require("../prompts/atlas");
|
|
// Import agent files — side effects register each agent into the registry
|
|
require("./orchestrator");
|
|
require("./coder");
|
|
require("./pm");
|
|
require("./marketing");
|
|
require("./atlas");
|
|
// Re-export public API
|
|
var registry_1 = require("./registry");
|
|
Object.defineProperty(exports, "AGENTS", { enumerable: true, get: function () { return registry_1.AGENTS; } });
|
|
Object.defineProperty(exports, "getAgent", { enumerable: true, get: function () { return registry_1.getAgent; } });
|
|
Object.defineProperty(exports, "allAgents", { enumerable: true, get: function () { return registry_1.allAgents; } });
|
|
Object.defineProperty(exports, "pick", { enumerable: true, get: function () { return registry_1.pick; } });
|