DSH Plugins Marketplace

DSH Plugins

Plugins

/

RE-Framework

u

RE-Framework

Discovered8

Modular engineering methodology framework for AI agents — reverse engineering & software development (core + re-binary / re-code / swe modules).

RE-Framework v2 — 通用工程方法论框架(逆向 + 编程,DSH 宿主)

基于《打破传统AI逆向的新思路:多Agent、自主管理上下文》(BitWarden, 看雪学苑 2026.06.18) 的方法论内核, 工程化、Skills化、SubAgents化拆分升级:领域无关核心 + 按需加载领域模块,从二进制逆向到代码逆向到常规编程全兼容。 DeepSeek Harness(DSH)是唯一维护宿主(2026-08-21 起;Reasonix 宿主格式已归档至 archive/reasonix/,Fork 可恢复自行迭代)。 验证协议继承 Anchorlaw Protocol v0.21(MIT,协议引用,不复制实现)。


快速开始(DSH)

# 1. 安装到 DSH 运行时(一次安装)
pwsh dsh/scripts/install.ps1
#    → 用户级全局技能:17 个 ref-* 装到 ~/.dsh/skills/(任何 preset/工作目录的会话按需加载)
#    → re-framework preset:完整工作台(人格 + 3 个 ref_* 工具:status/merge_index/init)

# 2. 在任意项目(如 E:\PYTHON\CoreSwap)工作区开会话(任何 preset)
#    → ref-* 技能开箱即用,cwd 在项目、产物落项目、本仓库零污染
#    → 需要框架工作台人格时再选 re-framework preset

# 3. 自检(工具链 / 技能 manifest / 安装产物 / 插件 schema)
pwsh dsh/scripts/selfcheck.ps1

DSH 会话标准流程:根 AGENTS.md(DSH-first 索引)→ 先读 dsh/SKILL-MAP.md(DSH 探测器:强初始化 / 任务路由 / Phase 0-3 / 执行强制链)→ 按 kebab 名加载技能执行。

架构

RE-Framework/
├── AGENTS.md                  # DSH-first 索引(自动加载入口)
├── spec/                      # 框架协议(铁律/工作流/产物/知识库/版本)+ Anchorlaw v0.21 引用
├── dsh/                       # DSH 宿主适配层(唯一维护区)
│   ├── skills/                # 17 个 ref-* 技能(单一事实源,直接维护)
│   ├── SKILL-MAP.md           # DSH 探测器(强初始化/路由/Phase 0-3/执行强制链 + dot→kebab 映射)
│   ├── plugins/re-framework-tools.js   # 3 个 ref_* 模型工具
│   ├── preset/                # re-framework agent preset
│   ├── scripts/install.ps1 + selfcheck.ps1 + gen_cheatsheet.py   # 安装 + 五段自检 + 压实派生视图生成模板
│   ├── tests/                 # test_manifest.py + check_plugin_schema.mjs + audit_preset_rows.mjs
│   └── AGENTS.md              # DSH 维护入口
├── templates/                 # 产物 schema(语言无关)
├── knowledge-builtin/         # 预置知识库
├── scripts/merge_index.py     # 并行索引合并(ref_merge_index 依赖)
└── archive/reasonix/          # Reasonix 宿主格式归档(只读,RESTORE.md 可恢复)

技能清单(17 个,kebab 名,DSH 加载用右列)

| 模块 | 技能(kebab) | 职责 | |------|--------------|------| | core | core-plan / core-artifact / core-knowledge / core-version / core-fanout / core-worker / core-judge | 架构设计 / 产物落盘 / 知识库 / 版本管理 / fan-out / 分析角色 / 审查角色 | | re-binary | re-lift / re-classify / re-trace / re-scout | 高精度还原 / 类结构 / 动态 trace / 只读勘探 | | re-code | recode-deobfuscate / recode-classmap / recode-behavior / recode-scout | 反混淆映射 / 类层次 / 行为验证 / 只读勘探 | | swe | swe-guide | 编程入口(→ Anchorlaw,纯引用) | | DSH-only | ref-maintain | DSH 适配层维护 |

与 Anchorlaw 的关系(纯引用式安装,零复制)

| 依赖层 | 方式 | |--------|------| | 协议 | spec §3 引用条款(单一事实源,升级核对见同步契约) | | 技能 | swe-guide 路由引用 anchor-*(由 Anchorlaw 宿主 install.ps1 装到用户级全局,RE 零复制) | | 工具 | anchorlaw_*(Anchorlaw 插件提供,RE 引用) | | CLI | anchorlaw / anchorlaw-scanner(pip 包,Anchorlaw 侧装) |

归档说明

  • Reasonix 宿主格式(dot 名技能、.reasonix/skills/ 部署、install.py/validate_manifest.py)自 2026-08-21 停止维护,归档至 archive/reasonix/(含 RESTORE.md + restore-reasonix.ps1,Fork 用户可一键恢复自行迭代)。
  • 框架核心(spec/templates/knowledge-builtin/scripts/merge_index.py)保留,DSH 技能正文引用它们。

更新记录

| 版本 | 日期 | 内容 | |------|------|------| | v2.5 | 2026-09-17 | Anchorlaw 引用 v0.20 → v0.21 升级核对:v0.21 为宿主适配层进展登记(preset 能力面对齐 + fail-closed preset 行解析门禁),协议核心逐字节未变——比对方法:protocol-v0.20.mdprotocol-v0.21.md 正文(changelog 之前)归一化版本号后逐行 diff,唯一差异为版本头部发布说明 16 行;§5/§9/§12/§13/§14/§15/§16 逐节零差异,§11/§16 零差异,§8 Maturity 表行数不变(仅 Host Integration 行文本补 v0.21 说明)。§5/§9/§12/§13/§14/§15/§16 条款全部保留,纯引用版本号升级,无语义迁移。详见 spec §3 新增核对行 + dsh/SYNC.md | | v2.4 | 2026-09-09 | 上游 DSH 漂移修复 + 能力面对齐:(1) 上游把 @deepseek-ai/dsh-workflow-worker-thread 改名为 @deepseek-ai/dsh-workflow-ptc(旧目录已不再是包)——preset 仍引用旧名,导致 preset 挂载失败、会话无法创建/恢复failed to mount);id+name 随上游改名,config 不变。(2) 能力面对齐官方 standard preset(31 行):补 5 行——command-goalpresent(启用)、tool-ralphtool-subagent-codextool-subagent-claude-code(按上游默认 disabled,启用需在 Profile 装对应 Bundle)→ ours 32 = official 31 + 本地 re-framework-tools,缺口 0。(3) 新增 fail-closed 门禁 tests/audit_preset_rows.mjs 并接入 selfcheck.ps1 第 [5] 项——preset 任一行不可解析即自检变红,不再等用户 resume 报错(2026-09-09 漂移事故,.investigations/dsh-upstream-drift-20260909/报告.md)。(4) 同日第二轮:preset 行 specifier 解析语义对齐上游classifyRowSpecifier() 四分类 + 包名自 harness base 向上走查;错基准 fail-closed) | | v2.3 | 2026-08-21 | 知识库压实机制(吸收 CoreSwap knowledge-compaction 提案,借鉴 DSH compaction):条目结构化 front-matter(id/status/supersedes/superseded_by/signature/verdict/lesson,对齐 Anchorlaw v0.20 §15.4 supersession 链)、派生视图禁止手维护(gen_cheatsheet.py 机械生成)、压实 pass(每 10 条或课题结案,簇合并为原则 + consolidated 原文保留);§4.5 第五条强制触发点(交接结论验证 ≤1 轮 + 闭合点三态切换建议 MUST + 污染信号触发分离落盘,对齐 v0.20 §16.3);Anchorlaw 引用 v0.19→v0.20 | | v2.2 | 2026-08-21 | DSH 唯一宿主迁移:Reasonix 归档(archive/reasonix/)、dsh/skills/ 变单一事实源、工具 5→3(ref_manifest_validate/ref_install 随 Reasonix 退役)、根 AGENTS.md 重写 DSH-first、spec 标注归档、安装简化(单一 install.ps1)、对 Anchorlaw 纯引用式安装(零复制);知识记录价值门(P1/P2/P3);Anchorlaw 引用 v0.18→v0.19(验证协议定位澄清) | | v2.1 | 2026-08-14~15 | DSH 适配层(dsh/ 子树)、技能用户级全局、工具 preset-only、Anchorlaw 引用 v0.15→v0.17→v0.18、SKILL-MAP DSH 探测器、错误账本强化 | | v2.0 | 2026-08 | 模块化重构(Reasonix 时代,已归档) | | v1.0 | 2026-06 | 单文件 42KB CLAUDE.md(BitWarden 方法论,已归档) |

Comments

Loading…

Similar plugins

Aegis

by GanyuanRan

Make AI coding agents architecture-aware: baseline-first, evidence-verified, drift-checked, and safe across long tasks.

Tools & CapabilitiesDevelopment & InfrastructureManifest valid

1.2k

27/wk

MIT

Python

Sep 16, 2026

dsh plugin --profile web add aegis

by shuguang1994

Make any project AI-agent-ready in one command. Adaptive tech stack detection (7 languages × 14 frameworks × 61 components), auto-generates AGENTS.md, docs skeleton, CI/CD, and testing infrastructure.

Development & InfrastructureManifest valid

21

MIT

JavaScript

Sep 14, 2026

dsh plugin --profile web add project-blueprint

by derekhu0002

An architecture-graph driven framework for Agentic Engineering.

Manifest valid

3

2.5k/wk

Apache-2.0

JavaScript

Sep 17, 2026

dsh plugin --profile web add archgraph-argo

by GraySilver

让 Agent 的工作方式可组合、可审查、可持续改进,最终实现 Agent Self Evoling。 DeepSeek Harness Web plugin with composable task controls and isolated, human-reviewed self-evolution.

Tools & CapabilitiesManifest valid

198

117/wk

MIT

TypeScript

Sep 14, 2026

dsh plugin --profile web add @graysilver/dsh-evolve-modes

by Azzygoatcoder

模块化 AI 科研/工程技能 monorepo(DeepSeek Harness / Claude Code 通用)— plugins/ + skills/ + bin 脚本 + LaTeX 模板,验证环驱动

Tools & CapabilitiesManifest valid

7

MIT

Python

Sep 13, 2026

dsh plugin --profile web add agent-useful-skills

by poplarity

A reproducible science workbench plugin for the DeepSeek Harness: agent-driven cells, inline figures with feedback/rerun, manifest provenance, and environment snapshots. 9 bio_* tools + workbench UI +

Tools & CapabilitiesManifest valid

9

MIT

JavaScript

Aug 26, 2026

dsh plugin --profile web add dsh-science-workbench