refactor: replace overloaded surface terminology

This commit is contained in:
Turtle
2026-07-24 19:54:25 +08:00
parent c172faed37
commit 0c708cb10d
626 changed files with 1396 additions and 1397 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@deepseek-ai/dsh-fs-policy",
"description": "File-context policy plugin for the DeepSeek Harness — observed-state, read-before-edit, and version-guarded write/edit added over the ctx.fs provider seam through the fs/* event gate (no service surface)",
"description": "File-context policy plugin for the DeepSeek Harness — observed-state, read-before-edit, and version-guarded write/edit added over the ctx.fs provider seam through the fs/* event gate (no service API)",
"version": "0.0.1-rc.1",
"publishConfig": {
"access": "restricted"

View File

@@ -30,7 +30,7 @@ async function setup() {
}
describe('registration / disposal', () => {
it('registers no service surface (it is a plugin, not ctx.fsPolicy)', async () => {
it('registers no service API (it is a plugin, not ctx.fsPolicy)', async () => {
const { ctx } = await setup()
expect((ctx as Context & { fsPolicy?: unknown }).fsPolicy).toBeUndefined()
})