paqad-ai 1.75.0 → 1.75.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/dist/cli/index.js +21 -1
- package/dist/cli/index.js.map +1 -1
- package/dist/index.js +27 -4
- package/dist/index.js.map +1 -1
- package/dist/kernel/gate.js +20 -0
- package/dist/kernel/gate.js.map +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# paqad-ai
|
|
2
2
|
|
|
3
|
+
## 1.75.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- c0edc5a: fix(#449): the completion (Stop) hook no longer forces the feature-development stage set on
|
|
8
|
+
host-agent-config-only changes. Paqad's own host-integration directories (`.claude/`, `.codex/`,
|
|
9
|
+
`.gemini/`, `.junie/`, `.cursor/`, `.windsurf/`, `.continue/`, `.aider/`, `.aiassistant/`) and the
|
|
10
|
+
`.windsurfrules` entry file are now classified as non-feature-development in the scope predicate, so
|
|
11
|
+
a session that only touches host wiring (e.g. regenerated hooks or an `mcp.json` edit) ends cleanly
|
|
12
|
+
instead of hard-blocking with a false "missing stage-evidence" failure. `.github/` stays in scope
|
|
13
|
+
(CI workflows are real code). Also fixes the #409 narration advisory so it only names stages the
|
|
14
|
+
agent itself authored (`live-mark`/`redo`), never a hook/backstop-inferred stage the agent never
|
|
15
|
+
claimed.
|
|
16
|
+
|
|
3
17
|
## 1.75.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
package/dist/cli/index.js
CHANGED
|
@@ -34147,9 +34147,29 @@ function isDocumentationPath(targetPath, projectRoot) {
|
|
|
34147
34147
|
if (/^(readme|changelog|contributing|license|licence|notice|authors)(\.|$)/i.test(p)) return true;
|
|
34148
34148
|
return false;
|
|
34149
34149
|
}
|
|
34150
|
+
var HOST_AGENT_CONFIG_DIRS = [
|
|
34151
|
+
".claude",
|
|
34152
|
+
".codex",
|
|
34153
|
+
".gemini",
|
|
34154
|
+
".junie",
|
|
34155
|
+
".cursor",
|
|
34156
|
+
".windsurf",
|
|
34157
|
+
".continue",
|
|
34158
|
+
".aider",
|
|
34159
|
+
".aiassistant"
|
|
34160
|
+
];
|
|
34161
|
+
var HOST_AGENT_CONFIG_FILES = [".windsurfrules"];
|
|
34162
|
+
function isHostAgentConfigPath(targetPath, projectRoot) {
|
|
34163
|
+
const p = toRelativePosix(targetPath, projectRoot);
|
|
34164
|
+
if (HOST_AGENT_CONFIG_FILES.includes(p)) {
|
|
34165
|
+
return true;
|
|
34166
|
+
}
|
|
34167
|
+
return HOST_AGENT_CONFIG_DIRS.some((dir) => p === dir || p.startsWith(`${dir}/`));
|
|
34168
|
+
}
|
|
34150
34169
|
function isFeatureDevEdit(targetPath, projectRoot) {
|
|
34151
34170
|
if (!targetPath) return true;
|
|
34152
34171
|
if (isFrameworkInternalPath(targetPath, projectRoot)) return false;
|
|
34172
|
+
if (isHostAgentConfigPath(targetPath, projectRoot)) return false;
|
|
34153
34173
|
if (isDocumentationPath(targetPath, projectRoot)) return false;
|
|
34154
34174
|
return true;
|
|
34155
34175
|
}
|
|
@@ -35035,7 +35055,7 @@ init_cancelled_error();
|
|
|
35035
35055
|
init_events();
|
|
35036
35056
|
|
|
35037
35057
|
// src/index.ts
|
|
35038
|
-
var VERSION = "1.75.
|
|
35058
|
+
var VERSION = "1.75.1";
|
|
35039
35059
|
|
|
35040
35060
|
// src/cli/commands/audit.ts
|
|
35041
35061
|
init_esm_shims();
|