@longtable/cli 0.1.30 → 0.1.32
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 +16 -13
- package/dist/cli.js +464 -493
- package/dist/project-session.d.ts +104 -2
- package/dist/project-session.js +293 -11
- package/dist/prompt-aliases.js +5 -5
- package/dist/prompt-renderer.d.ts +11 -0
- package/dist/prompt-renderer.js +130 -0
- package/dist/search/publisher-access.js +1 -1
- package/dist/search/sources.js +2 -2
- package/package.json +8 -7
package/README.md
CHANGED
|
@@ -8,9 +8,9 @@ Claude skills, and future MCP surfaces remain generated adapter artifacts.
|
|
|
8
8
|
|
|
9
9
|
The basic contract is:
|
|
10
10
|
|
|
11
|
-
1.
|
|
12
|
-
2.
|
|
13
|
-
3.
|
|
11
|
+
1. approve provider/runtime support once
|
|
12
|
+
2. start each project inside the provider with `$longtable-interview`
|
|
13
|
+
3. create or resume a workspace from that interview
|
|
14
14
|
4. preserve decisions, tensions, and evidence as durable project state
|
|
15
15
|
|
|
16
16
|
## Install
|
|
@@ -26,15 +26,17 @@ config, hooks, or provider runtime files without explicit setup approval.
|
|
|
26
26
|
|
|
27
27
|
```bash
|
|
28
28
|
longtable setup --provider codex
|
|
29
|
-
|
|
30
|
-
cd "<project-path>"
|
|
29
|
+
cd "<research-folder>"
|
|
31
30
|
codex
|
|
32
31
|
```
|
|
33
32
|
|
|
33
|
+
Then invoke `$longtable-interview` inside Codex.
|
|
34
|
+
|
|
34
35
|
`longtable setup --provider codex` is the permission-first setup route. It asks
|
|
35
36
|
where LongTable may install support, which runtime surfaces it may enable, how
|
|
36
|
-
strongly it may interrupt research decisions, and whether to
|
|
37
|
-
|
|
37
|
+
strongly it may interrupt research decisions, and whether to show the
|
|
38
|
+
provider-native interview launch steps. `longtable init` remains only as a
|
|
39
|
+
deprecated compatibility alias.
|
|
38
40
|
|
|
39
41
|
Return later:
|
|
40
42
|
|
|
@@ -44,7 +46,7 @@ longtable resume
|
|
|
44
46
|
codex
|
|
45
47
|
```
|
|
46
48
|
|
|
47
|
-
## What
|
|
49
|
+
## What `$longtable-interview` Creates
|
|
48
50
|
|
|
49
51
|
```text
|
|
50
52
|
<project>/
|
|
@@ -84,7 +86,6 @@ This is how LongTable avoids turning tacit knowledge into fake certainty.
|
|
|
84
86
|
|
|
85
87
|
```bash
|
|
86
88
|
longtable setup
|
|
87
|
-
longtable start
|
|
88
89
|
longtable resume --cwd "<project-path>"
|
|
89
90
|
longtable roles
|
|
90
91
|
longtable ask --cwd "<project-path>" --prompt "..."
|
|
@@ -136,12 +137,14 @@ longtable claude install-skills
|
|
|
136
137
|
|
|
137
138
|
Codex skills include `longtable`, `longtable-panel`, and generated role-specific
|
|
138
139
|
skills such as `longtable-methods-critic`. If your Codex build exposes explicit
|
|
139
|
-
skill shortcuts, `$longtable` is the
|
|
140
|
-
|
|
140
|
+
skill shortcuts, `$longtable-interview` is the research-start entry and
|
|
141
|
+
`$longtable` is the general router. Do not depend on `/prompts`; current Codex
|
|
142
|
+
builds may reject it.
|
|
141
143
|
|
|
142
144
|
Claude Code skills include `longtable`, `longtable-panel`, and generated
|
|
143
|
-
role-specific skills such as `longtable-methods-critic`. They
|
|
144
|
-
|
|
145
|
+
role-specific skills such as `longtable-methods-critic`. They also include
|
|
146
|
+
`longtable-interview` for the First Research Shape workflow. They are adapter
|
|
147
|
+
files generated from the LongTable role registry.
|
|
145
148
|
|
|
146
149
|
## Panel Orchestration
|
|
147
150
|
|