@arsxxi/iterative-dev-workflow 1.0.1 → 1.0.2

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.
@@ -1,71 +1,69 @@
1
- ---
2
- description: "Session Transcript"
3
- argument-hint: [optional: project name]
4
- ---
5
-
6
- ## Step 0 — find which project this is for
7
-
8
- Before anything else, figure out which project this command applies to:
9
-
10
- 1. If you were given a project name after the slash (e.g. `/session-transcript my-project`), use it.
11
- 2. Otherwise, look at the subfolders under `.workflow/`:
12
- - Exactly one folder → use it. Tell the user which project you picked (e.g. "Working on
13
- `my-project`"), so it's never a silent guess.
14
- - Two or more folders → ask the user once which project this is for. To make the question
15
- useful, show the first line of each project's `00-context.md`, not just the folder name.
16
- - No folders → fall back to the project root directory name as the project name (this is the
17
- one case where no project is in progress yet — a transcript may legitimately exist outside
18
- of `.workflow/`).
19
-
20
- # Session Transcript
21
-
22
- ## Purpose
23
- Record this session's conversation as-is, in chronological order (who said what), as a standalone factual record — separate from the workflow's phase deliverables (which only contain final results, not the discussion that led to them).
24
-
25
- ## Steps
26
-
27
- 1. **Scan the project root.** Do NOT create any new folders. Determine the project root directory (where `.git/` or `package.json` or similar marker exists). Save the transcript directly in the project root.
28
-
29
- 2. **Scan the project root.** Do NOT create any new folders. Determine the project root directory (where `.git/` or `package.json` or similar marker exists). Save the transcript directly in the project root.
30
-
31
- 3. **Reconstruct this session's conversation in chronological order**, turn by turn, labeled by
32
- who said it (`User` / `Agent`). Use the actual wording from the conversation - do not
33
- summarize, paraphrase, condense, or skip turns.
34
-
35
- 4. **Be honest about context limits.** You can only transcribe what's actually present in your
36
- current context window for this session. If earlier turns were compacted, truncated, or are
37
- otherwise not available to you, say so explicitly at the top of the file (e.g. "Transcript
38
- starts partway through the session - earlier turns were not available in context") instead of
39
- inventing or guessing what was said.
40
-
41
- 5. **Check for an existing transcript file.** If `aichat-<slug>.md` already exists from a
42
- previous run, do not overwrite it - append this session's transcript below the existing
43
- content, under a new dated section, so multiple sessions accumulate in one file.
44
-
45
- ## Output format
46
-
47
- ```markdown
48
- # Session Transcript
49
-
50
- ## Project: <project-name>
51
-
52
- ## Session: <date/time if known, otherwise "session N">
53
-
54
- ### User
55
- <verbatim text of the turn>
56
-
57
- ### Agent
58
- <verbatim text of the turn>
59
-
60
- ### User
61
- <verbatim text of the turn>
62
-
63
- ...
64
- ```
65
-
66
- Write the result to `aichat-<slug>.md` in the project root. If no project name was provided, use `aichat.md`.
67
-
68
- ## Trigger
69
- ```
70
- $ARGUMENTS = "optional: project name"
71
- ```
1
+ ---
2
+ description: "Session Transcript"
3
+ argument-hint: [optional: project name]
4
+ ---
5
+
6
+ ## Step 0 — find which project this is for
7
+
8
+ Before anything else, figure out which project this command applies to:
9
+
10
+ 1. If you were given a project name after the slash (e.g. `/session-transcript my-project`), use it.
11
+ 2. Otherwise, look at the subfolders under `.workflow/`:
12
+ - Exactly one folder → use it. Tell the user which project you picked (e.g. "Working on
13
+ `my-project`"), so it's never a silent guess.
14
+ - Two or more folders → ask the user once which project this is for. To make the question
15
+ useful, show the first line of each project's `00-context.md`, not just the folder name.
16
+ - No folders → fall back to the project root directory name as the project name (this is the
17
+ one case where no project is in progress yet — a transcript may legitimately exist outside
18
+ of `.workflow/`).
19
+
20
+ # Session Transcript
21
+
22
+ ## Purpose
23
+ Record this session's conversation as-is, in chronological order (who said what), as a standalone factual record — separate from the workflow's phase deliverables (which only contain final results, not the discussion that led to them).
24
+
25
+ ## Steps
26
+
27
+ 1. **Scan the project root.** Do NOT create any new folders. Determine the project root directory (where `.git/` or `package.json` or similar marker exists). Save the transcript directly in the project root.
28
+
29
+ 2. **Reconstruct this session's conversation in chronological order**, turn by turn, labeled by
30
+ who said it (`User` / `Agent`). Use the actual wording from the conversation - do not
31
+ summarize, paraphrase, condense, or skip turns.
32
+
33
+ 3. **Be honest about context limits.** You can only transcribe what's actually present in your
34
+ current context window for this session. If earlier turns were compacted, truncated, or are
35
+ otherwise not available to you, say so explicitly at the top of the file (e.g. "Transcript
36
+ starts partway through the session - earlier turns were not available in context") instead of
37
+ inventing or guessing what was said.
38
+
39
+ 4. **Check for an existing transcript file.** If `aichat-<slug>.md` already exists from a
40
+ previous run, do not overwrite it - append this session's transcript below the existing
41
+ content, under a new dated section, so multiple sessions accumulate in one file.
42
+
43
+ ## Output format
44
+
45
+ ```markdown
46
+ # Session Transcript
47
+
48
+ ## Project: <project-name>
49
+
50
+ ## Session: <date/time if known, otherwise "session N">
51
+
52
+ ### User
53
+ <verbatim text of the turn>
54
+
55
+ ### Agent
56
+ <verbatim text of the turn>
57
+
58
+ ### User
59
+ <verbatim text of the turn>
60
+
61
+ ...
62
+ ```
63
+
64
+ Write the result to `aichat-<slug>.md` in the project root. If no project name was provided, use `aichat.md`.
65
+
66
+ ## Trigger
67
+ ```
68
+ $ARGUMENTS = "optional: project name"
69
+ ```
@@ -1,2 +1,2 @@
1
- description = "Session Transcript — write verbatim chronological transcript to project root as aichat-<slug>.md"
2
- prompt = "Run Session Transcript. Determine project name from $ARGUMENTS if provided, otherwise use project root directory name. Scan the project root — do NOT create any new folders. Reconstruct conversation chronologically, labeled by User/Agent — verbatim, no summarization. If context is truncated, say so. If aichat-<slug>.md exists, append under new dated section instead of overwriting. Output: write to aichat-<slug>.md in project root. Reference: $ARGUMENTS"
1
+ description = "Session Transcript — write verbatim chronological transcript to project root as aichat-<slug>.md"
2
+ prompt = "Run Session Transcript. Determine project name from $ARGUMENTS if provided, otherwise use project root directory name. Scan the project root — do NOT create any new folders. Reconstruct conversation chronologically, labeled by User/Agent — verbatim, no summarization. If context is truncated, say so. If aichat-<slug>.md exists, append under new dated section instead of overwriting. Output: write to aichat-<slug>.md in project root. Reference: $ARGUMENTS"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arsxxi/iterative-dev-workflow",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "A structured 4-phase iterative development workflow for AI coding agents.",
5
5
  "keywords": [
6
6
  "opencode-plugin",
@@ -25,11 +25,18 @@
25
25
  "exports": {
26
26
  ".": "./.opencode/plugins/iterative-dev-workflow.mjs"
27
27
  },
28
+ "bin": {
29
+ "iterative-dev-workflow-install": "./bin/install-opencode-commands.mjs"
30
+ },
31
+ "scripts": {
32
+ "postinstall": "node ./bin/install-opencode-commands.mjs || true"
33
+ },
28
34
  "files": [
29
35
  "AGENTS.md",
30
36
  ".opencode/",
31
37
  "commands/",
32
- "skills/"
38
+ "skills/",
39
+ "bin/"
33
40
  ],
34
41
  "publishConfig": {
35
42
  "access": "public"