任务门户系统:通用问题解决代理

任务门户系统:通用问题解决代理

MCP-Server 工具项目,支持 Claude 和兼容 AI 的任务处理。

快速入门

  1. 克隆仓库 使用以下命令获取代码:

    git clone https://github.com/angrysky56/task-portal.git
    cd task-portal
    
  2. 安装依赖 确保已安装 Python 环境,并运行以下命令安装依赖:

    pip install -r requirements.txt
    
  3. 初始化系统 初始化任务门户系统并设置问题上下文:

    from system import GeneralProblemSolvingAgency, ProblemContext
    
    gpsa = GeneralProblemSolvingAgency()
    context = ProblemContext({
        'domain': 'scientific_research',
        'constraints': {
            'ethical': ['data_privacy', 'harm_prevention'],
            'logical': ['proof_required', 'verification_needed']
        }
    })
    solution = gpsa.solve_problem(context)
    print(solution)
    
  4. 运行与验证 运行系统并观察解决方案,确保每一步都经过逻辑验证。

  5. 扩展功能 根据需求扩展工具或集成新功能,参考 /Documentation 目录获取详细文档。