🎯 PromptX v0.0.1 完整实现 - 五大锦囊命令、AI记忆系统、角色系统、PATEOAS状态机、DPML协议全部完成

This commit is contained in:
sean
2025-05-31 16:48:21 +08:00
parent be285f55b8
commit 323c4e569c
50 changed files with 4308 additions and 1947 deletions

View File

@ -0,0 +1,79 @@
const ResourceProtocol = require('./ResourceProtocol');
const fs = require('fs-extra');
const path = require('path');
/**
* AI角色协议处理器
* 处理 role:// 协议的资源解析直接加载完整role文件
*/
class RoleProtocol extends ResourceProtocol {
constructor() {
super('role');
this.registry = {};
}
/**
* 设置注册表
*/
setRegistry(registry) {
this.registry = registry || {};
}
/**
* 获取协议信息
*/
getProtocolInfo() {
return {
name: 'role',
description: 'AI角色资源协议',
location: 'role://{role_id}',
examples: [
'role://video-copywriter',
'role://product-owner',
'role://assistant',
'role://prompt-developer'
]
};
}
/**
* 解析资源路径
*/
async resolvePath(resourcePath, queryParams) {
const roleId = resourcePath.trim();
if (!this.registry[roleId]) {
throw new Error(`角色 "${roleId}" 未在注册表中找到。可用角色:${Object.keys(this.registry).join(', ')}`);
}
let resolvedPath = this.registry[roleId];
// 处理 @package:// 前缀
if (resolvedPath.startsWith('@package://')) {
resolvedPath = resolvedPath.replace('@package://', '');
}
return resolvedPath;
}
/**
* 加载资源内容
*/
async loadContent(resolvedPath, queryParams) {
try {
const content = await fs.readFile(resolvedPath, 'utf-8');
return content;
} catch (error) {
throw new Error(`无法加载角色文件 ${resolvedPath}: ${error.message}`);
}
}
/**
* 验证资源路径
*/
validatePath(resourcePath) {
return /^[a-zA-Z0-9_-]+$/.test(resourcePath);
}
}
module.exports = RoleProtocol;