Merge pull request #1827 from paperclipai/pr/pap-891-docs-refresh
docs: refresh adapter/runtime docs and deprecate bootstrapPromptTemplate
This commit is contained in:
commit
6073ac3145
2 changed files with 3 additions and 2 deletions
|
|
@ -9,6 +9,7 @@ const ROOT_KEY = "instructionsRootPath";
|
||||||
const ENTRY_KEY = "instructionsEntryFile";
|
const ENTRY_KEY = "instructionsEntryFile";
|
||||||
const FILE_KEY = "instructionsFilePath";
|
const FILE_KEY = "instructionsFilePath";
|
||||||
const PROMPT_KEY = "promptTemplate";
|
const PROMPT_KEY = "promptTemplate";
|
||||||
|
/** @deprecated Use the managed instructions bundle system instead. */
|
||||||
const BOOTSTRAP_PROMPT_KEY = "bootstrapPromptTemplate";
|
const BOOTSTRAP_PROMPT_KEY = "bootstrapPromptTemplate";
|
||||||
const LEGACY_PROMPT_TEMPLATE_PATH = "promptTemplate.legacy.md";
|
const LEGACY_PROMPT_TEMPLATE_PATH = "promptTemplate.legacy.md";
|
||||||
const IGNORED_INSTRUCTIONS_FILE_NAMES = new Set([".DS_Store", "Thumbs.db", "Desktop.ini"]);
|
const IGNORED_INSTRUCTIONS_FILE_NAMES = new Set([".DS_Store", "Thumbs.db", "Desktop.ini"]);
|
||||||
|
|
|
||||||
|
|
@ -1475,7 +1475,7 @@ function normalizePortableConfig(
|
||||||
key === "instructionsRootPath" ||
|
key === "instructionsRootPath" ||
|
||||||
key === "instructionsEntryFile" ||
|
key === "instructionsEntryFile" ||
|
||||||
key === "promptTemplate" ||
|
key === "promptTemplate" ||
|
||||||
key === "bootstrapPromptTemplate" ||
|
key === "bootstrapPromptTemplate" || // deprecated — kept for backward compat
|
||||||
key === "paperclipSkillSync"
|
key === "paperclipSkillSync"
|
||||||
) continue;
|
) continue;
|
||||||
if (key === "env") continue;
|
if (key === "env") continue;
|
||||||
|
|
@ -3895,7 +3895,7 @@ export function companyPortabilityService(db: Db, storage?: StorageService) {
|
||||||
desiredSkills,
|
desiredSkills,
|
||||||
);
|
);
|
||||||
delete adapterConfigWithSkills.promptTemplate;
|
delete adapterConfigWithSkills.promptTemplate;
|
||||||
delete adapterConfigWithSkills.bootstrapPromptTemplate;
|
delete adapterConfigWithSkills.bootstrapPromptTemplate; // deprecated
|
||||||
delete adapterConfigWithSkills.instructionsFilePath;
|
delete adapterConfigWithSkills.instructionsFilePath;
|
||||||
delete adapterConfigWithSkills.instructionsBundleMode;
|
delete adapterConfigWithSkills.instructionsBundleMode;
|
||||||
delete adapterConfigWithSkills.instructionsRootPath;
|
delete adapterConfigWithSkills.instructionsRootPath;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue