opencode-tsift 0.1.81 → 0.1.83
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/README.md +1 -1
- package/commands/tsift-context-pack.md +1 -1
- package/commands/tsift-diff-digest.md +1 -1
- package/commands/tsift-explain.md +1 -1
- package/commands/tsift-graph.md +1 -1
- package/commands/tsift-log-digest.md +1 -1
- package/commands/tsift-memory-guard.md +1 -1
- package/commands/tsift-memory-search.md +1 -1
- package/commands/tsift-memory-status.md +1 -1
- package/commands/tsift-rewrite-run.md +1 -1
- package/commands/tsift-search.md +1 -1
- package/commands/tsift-session-review.md +1 -1
- package/commands/tsift-source-read.md +1 -1
- package/commands/tsift-status.md +2 -2
- package/commands/tsift-symbol-read.md +1 -1
- package/commands/tsift-test-digest.md +1 -1
- package/package.json +1 -1
- package/src/index.js +1 -1
package/README.md
CHANGED
|
@@ -47,7 +47,7 @@ shell invocation. The required permissions break down by command:
|
|
|
47
47
|
|
|
48
48
|
| Command | Bash execution | File read | File write |
|
|
49
49
|
|---|---|---|---|
|
|
50
|
-
| `/tsift-status` | `tsift status
|
|
50
|
+
| `/tsift-status` | `tsift status` | `.tsift/`, source tree | `.tsift/` |
|
|
51
51
|
| `/tsift-session-review` | `tsift --envelope session-review` | `.tsift/`, agent-doc logs | — |
|
|
52
52
|
| `/tsift-context-pack` | `tsift --envelope context-pack` | `.tsift/`, source files | — |
|
|
53
53
|
| `/tsift-memory-status` | `tsift memory status` | `.tsift/`, `.claude-mem/` fallback import source | — |
|
package/commands/tsift-graph.md
CHANGED
package/commands/tsift-search.md
CHANGED
package/commands/tsift-status.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
<!-- tsift:opencode-command v=0.1.
|
|
1
|
+
<!-- tsift:opencode-command v=0.1.83 name=tsift-status -->
|
|
2
2
|
---
|
|
3
3
|
description: Refresh and summarize tsift index status
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
Run `tsift status
|
|
6
|
+
Run `tsift status` from the project root, then summarize index freshness, instruction freshness, summary-cache state, and any recommended `use:` or `run:` commands. Stop and report the exact failure if the command fails.
|
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -57,7 +57,7 @@ export const TsiftOpenCodePlugin = async (ctx = {}) => {
|
|
|
57
57
|
if (state !== "stale" && state !== "missing") return;
|
|
58
58
|
|
|
59
59
|
try {
|
|
60
|
-
await execFileAsync(tsiftBin, ["status",
|
|
60
|
+
await execFileAsync(tsiftBin, ["status", projectDir], { timeout: 120000 });
|
|
61
61
|
await log({
|
|
62
62
|
body: {
|
|
63
63
|
service: "opencode-tsift",
|