UNPKG

dpml-prompt

Version:

DPML-powered AI prompt framework - Revolutionary AI-First CLI system based on Deepractice Prompt Markup Language. Build sophisticated AI agents with structured prompts, memory systems, and execution frameworks.

78 lines (66 loc) 1.65 kB
const ResourceProtocol = require('./ResourceProtocol') const fs = require('fs-extra') const path = require('path') /** * 思维模式协议处理器 * 处理 thought:// 协议的资源解析 */ class ThoughtProtocol extends ResourceProtocol { constructor () { super('thought') this.registry = {} } /** * 设置注册表 */ setRegistry (registry) { this.registry = registry || {} } /** * 获取协议信息 */ getProtocolInfo () { return { name: 'thought', description: '思维模式资源协议', location: 'thought://{thought_id}', examples: [ 'thought://prompt-developer', 'thought://product-owner' ] } } /** * 解析资源路径 */ async resolvePath (resourcePath, queryParams) { const thoughtId = resourcePath.trim() if (!this.registry[thoughtId]) { throw new Error(`思维模式 "${thoughtId}" 未在注册表中找到`) } let resolvedPath = this.registry[thoughtId] // 处理 @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 = ThoughtProtocol