erk 0.4.5__py3-none-any.whl
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.
- erk/__init__.py +12 -0
- erk/__main__.py +6 -0
- erk/agent_docs/__init__.py +5 -0
- erk/agent_docs/models.py +123 -0
- erk/agent_docs/operations.py +666 -0
- erk/artifacts/__init__.py +5 -0
- erk/artifacts/artifact_health.py +623 -0
- erk/artifacts/detection.py +16 -0
- erk/artifacts/discovery.py +343 -0
- erk/artifacts/models.py +63 -0
- erk/artifacts/staleness.py +56 -0
- erk/artifacts/state.py +100 -0
- erk/artifacts/sync.py +624 -0
- erk/cli/__init__.py +0 -0
- erk/cli/activation.py +132 -0
- erk/cli/alias.py +53 -0
- erk/cli/cli.py +221 -0
- erk/cli/commands/__init__.py +0 -0
- erk/cli/commands/admin.py +153 -0
- erk/cli/commands/artifact/__init__.py +1 -0
- erk/cli/commands/artifact/check.py +260 -0
- erk/cli/commands/artifact/group.py +31 -0
- erk/cli/commands/artifact/list_cmd.py +89 -0
- erk/cli/commands/artifact/show.py +62 -0
- erk/cli/commands/artifact/sync_cmd.py +39 -0
- erk/cli/commands/branch/__init__.py +26 -0
- erk/cli/commands/branch/assign_cmd.py +152 -0
- erk/cli/commands/branch/checkout_cmd.py +357 -0
- erk/cli/commands/branch/create_cmd.py +161 -0
- erk/cli/commands/branch/list_cmd.py +82 -0
- erk/cli/commands/branch/unassign_cmd.py +197 -0
- erk/cli/commands/cc/__init__.py +15 -0
- erk/cli/commands/cc/jsonl_cmd.py +20 -0
- erk/cli/commands/cc/session/AGENTS.md +30 -0
- erk/cli/commands/cc/session/CLAUDE.md +1 -0
- erk/cli/commands/cc/session/__init__.py +15 -0
- erk/cli/commands/cc/session/list_cmd.py +167 -0
- erk/cli/commands/cc/session/show_cmd.py +175 -0
- erk/cli/commands/completion.py +89 -0
- erk/cli/commands/completions.py +165 -0
- erk/cli/commands/config.py +327 -0
- erk/cli/commands/docs/__init__.py +1 -0
- erk/cli/commands/docs/group.py +16 -0
- erk/cli/commands/docs/sync.py +121 -0
- erk/cli/commands/docs/validate.py +102 -0
- erk/cli/commands/doctor.py +243 -0
- erk/cli/commands/down.py +171 -0
- erk/cli/commands/exec/__init__.py +1 -0
- erk/cli/commands/exec/group.py +164 -0
- erk/cli/commands/exec/scripts/AGENTS.md +79 -0
- erk/cli/commands/exec/scripts/CLAUDE.md +1 -0
- erk/cli/commands/exec/scripts/__init__.py +5 -0
- erk/cli/commands/exec/scripts/add_reaction_to_comment.py +69 -0
- erk/cli/commands/exec/scripts/add_remote_execution_note.py +68 -0
- erk/cli/commands/exec/scripts/check_impl.py +152 -0
- erk/cli/commands/exec/scripts/ci_update_pr_body.py +294 -0
- erk/cli/commands/exec/scripts/create_extraction_branch.py +138 -0
- erk/cli/commands/exec/scripts/create_extraction_plan.py +242 -0
- erk/cli/commands/exec/scripts/create_issue_from_session.py +103 -0
- erk/cli/commands/exec/scripts/create_plan_from_context.py +103 -0
- erk/cli/commands/exec/scripts/create_worker_impl_from_issue.py +93 -0
- erk/cli/commands/exec/scripts/detect_trunk_branch.py +121 -0
- erk/cli/commands/exec/scripts/exit_plan_mode_hook.py +777 -0
- erk/cli/commands/exec/scripts/extract_latest_plan.py +49 -0
- erk/cli/commands/exec/scripts/extract_session_from_issue.py +150 -0
- erk/cli/commands/exec/scripts/find_project_dir.py +214 -0
- erk/cli/commands/exec/scripts/generate_pr_summary.py +112 -0
- erk/cli/commands/exec/scripts/get_closing_text.py +98 -0
- erk/cli/commands/exec/scripts/get_embedded_prompt.py +62 -0
- erk/cli/commands/exec/scripts/get_plan_metadata.py +95 -0
- erk/cli/commands/exec/scripts/get_pr_body_footer.py +70 -0
- erk/cli/commands/exec/scripts/get_pr_discussion_comments.py +149 -0
- erk/cli/commands/exec/scripts/get_pr_review_comments.py +155 -0
- erk/cli/commands/exec/scripts/impl_init.py +158 -0
- erk/cli/commands/exec/scripts/impl_signal.py +375 -0
- erk/cli/commands/exec/scripts/impl_verify.py +49 -0
- erk/cli/commands/exec/scripts/issue_title_to_filename.py +34 -0
- erk/cli/commands/exec/scripts/list_sessions.py +296 -0
- erk/cli/commands/exec/scripts/mark_impl_ended.py +188 -0
- erk/cli/commands/exec/scripts/mark_impl_started.py +188 -0
- erk/cli/commands/exec/scripts/marker.py +163 -0
- erk/cli/commands/exec/scripts/objective_save_to_issue.py +109 -0
- erk/cli/commands/exec/scripts/plan_save_to_issue.py +269 -0
- erk/cli/commands/exec/scripts/plan_update_issue.py +147 -0
- erk/cli/commands/exec/scripts/post_extraction_comment.py +237 -0
- erk/cli/commands/exec/scripts/post_or_update_pr_summary.py +133 -0
- erk/cli/commands/exec/scripts/post_pr_inline_comment.py +143 -0
- erk/cli/commands/exec/scripts/post_workflow_started_comment.py +168 -0
- erk/cli/commands/exec/scripts/preprocess_session.py +777 -0
- erk/cli/commands/exec/scripts/quick_submit.py +32 -0
- erk/cli/commands/exec/scripts/rebase_with_conflict_resolution.py +260 -0
- erk/cli/commands/exec/scripts/reply_to_discussion_comment.py +173 -0
- erk/cli/commands/exec/scripts/resolve_review_thread.py +170 -0
- erk/cli/commands/exec/scripts/session_id_injector_hook.py +52 -0
- erk/cli/commands/exec/scripts/setup_impl_from_issue.py +159 -0
- erk/cli/commands/exec/scripts/slot_objective.py +102 -0
- erk/cli/commands/exec/scripts/tripwires_reminder_hook.py +20 -0
- erk/cli/commands/exec/scripts/update_dispatch_info.py +116 -0
- erk/cli/commands/exec/scripts/user_prompt_hook.py +113 -0
- erk/cli/commands/exec/scripts/validate_plan_content.py +98 -0
- erk/cli/commands/exec/scripts/wrap_plan_in_metadata_block.py +34 -0
- erk/cli/commands/implement.py +695 -0
- erk/cli/commands/implement_shared.py +649 -0
- erk/cli/commands/info/__init__.py +14 -0
- erk/cli/commands/info/release_notes_cmd.py +128 -0
- erk/cli/commands/init.py +801 -0
- erk/cli/commands/land_cmd.py +690 -0
- erk/cli/commands/log_cmd.py +137 -0
- erk/cli/commands/md/__init__.py +5 -0
- erk/cli/commands/md/check.py +118 -0
- erk/cli/commands/md/group.py +14 -0
- erk/cli/commands/navigation_helpers.py +430 -0
- erk/cli/commands/objective/__init__.py +16 -0
- erk/cli/commands/objective/list_cmd.py +47 -0
- erk/cli/commands/objective_helpers.py +132 -0
- erk/cli/commands/plan/__init__.py +32 -0
- erk/cli/commands/plan/check_cmd.py +174 -0
- erk/cli/commands/plan/close_cmd.py +69 -0
- erk/cli/commands/plan/create_cmd.py +120 -0
- erk/cli/commands/plan/docs/__init__.py +18 -0
- erk/cli/commands/plan/docs/extract_cmd.py +53 -0
- erk/cli/commands/plan/docs/unextract_cmd.py +38 -0
- erk/cli/commands/plan/docs/unextracted_cmd.py +72 -0
- erk/cli/commands/plan/extraction/__init__.py +16 -0
- erk/cli/commands/plan/extraction/complete_cmd.py +101 -0
- erk/cli/commands/plan/extraction/create_raw_cmd.py +63 -0
- erk/cli/commands/plan/get.py +71 -0
- erk/cli/commands/plan/list_cmd.py +754 -0
- erk/cli/commands/plan/log_cmd.py +440 -0
- erk/cli/commands/plan/start_cmd.py +459 -0
- erk/cli/commands/planner/__init__.py +40 -0
- erk/cli/commands/planner/configure_cmd.py +73 -0
- erk/cli/commands/planner/connect_cmd.py +96 -0
- erk/cli/commands/planner/create_cmd.py +148 -0
- erk/cli/commands/planner/list_cmd.py +51 -0
- erk/cli/commands/planner/register_cmd.py +105 -0
- erk/cli/commands/planner/set_default_cmd.py +23 -0
- erk/cli/commands/planner/unregister_cmd.py +43 -0
- erk/cli/commands/pr/__init__.py +23 -0
- erk/cli/commands/pr/check_cmd.py +112 -0
- erk/cli/commands/pr/checkout_cmd.py +165 -0
- erk/cli/commands/pr/fix_conflicts_cmd.py +82 -0
- erk/cli/commands/pr/parse_pr_reference.py +10 -0
- erk/cli/commands/pr/submit_cmd.py +360 -0
- erk/cli/commands/pr/sync_cmd.py +181 -0
- erk/cli/commands/prepare_cwd_recovery.py +60 -0
- erk/cli/commands/project/__init__.py +16 -0
- erk/cli/commands/project/init_cmd.py +91 -0
- erk/cli/commands/run/__init__.py +17 -0
- erk/cli/commands/run/list_cmd.py +189 -0
- erk/cli/commands/run/logs_cmd.py +54 -0
- erk/cli/commands/run/shared.py +19 -0
- erk/cli/commands/shell_integration.py +29 -0
- erk/cli/commands/slot/__init__.py +23 -0
- erk/cli/commands/slot/check_cmd.py +277 -0
- erk/cli/commands/slot/common.py +314 -0
- erk/cli/commands/slot/init_pool_cmd.py +157 -0
- erk/cli/commands/slot/list_cmd.py +228 -0
- erk/cli/commands/slot/repair_cmd.py +190 -0
- erk/cli/commands/stack/__init__.py +23 -0
- erk/cli/commands/stack/consolidate_cmd.py +470 -0
- erk/cli/commands/stack/list_cmd.py +79 -0
- erk/cli/commands/stack/move_cmd.py +309 -0
- erk/cli/commands/stack/split_old/README.md +64 -0
- erk/cli/commands/stack/split_old/__init__.py +5 -0
- erk/cli/commands/stack/split_old/command.py +233 -0
- erk/cli/commands/stack/split_old/display.py +116 -0
- erk/cli/commands/stack/split_old/plan.py +216 -0
- erk/cli/commands/status.py +58 -0
- erk/cli/commands/submit.py +768 -0
- erk/cli/commands/up.py +154 -0
- erk/cli/commands/upgrade.py +82 -0
- erk/cli/commands/wt/__init__.py +29 -0
- erk/cli/commands/wt/checkout_cmd.py +110 -0
- erk/cli/commands/wt/create_cmd.py +998 -0
- erk/cli/commands/wt/current_cmd.py +35 -0
- erk/cli/commands/wt/delete_cmd.py +573 -0
- erk/cli/commands/wt/list_cmd.py +332 -0
- erk/cli/commands/wt/rename_cmd.py +66 -0
- erk/cli/config.py +242 -0
- erk/cli/constants.py +29 -0
- erk/cli/core.py +65 -0
- erk/cli/debug.py +9 -0
- erk/cli/ensure-conversion-tasks.md +288 -0
- erk/cli/ensure.py +628 -0
- erk/cli/github_parsing.py +96 -0
- erk/cli/graphite.py +81 -0
- erk/cli/graphite_command.py +80 -0
- erk/cli/help_formatter.py +345 -0
- erk/cli/output.py +361 -0
- erk/cli/presets/dagster.toml +12 -0
- erk/cli/presets/generic.toml +12 -0
- erk/cli/prompt_hooks_templates/README.md +68 -0
- erk/cli/script_output.py +32 -0
- erk/cli/shell_integration/bash_wrapper.sh +32 -0
- erk/cli/shell_integration/fish_wrapper.fish +39 -0
- erk/cli/shell_integration/handler.py +338 -0
- erk/cli/shell_integration/zsh_wrapper.sh +32 -0
- erk/cli/shell_utils.py +171 -0
- erk/cli/subprocess_utils.py +92 -0
- erk/cli/uvx_detection.py +59 -0
- erk/core/__init__.py +0 -0
- erk/core/claude_executor.py +511 -0
- erk/core/claude_settings.py +317 -0
- erk/core/command_log.py +406 -0
- erk/core/commit_message_generator.py +234 -0
- erk/core/completion.py +10 -0
- erk/core/consolidation_utils.py +177 -0
- erk/core/context.py +570 -0
- erk/core/display/__init__.py +4 -0
- erk/core/display/abc.py +24 -0
- erk/core/display/real.py +30 -0
- erk/core/display_utils.py +526 -0
- erk/core/file_utils.py +87 -0
- erk/core/health_checks.py +1315 -0
- erk/core/health_checks_dogfooder/__init__.py +85 -0
- erk/core/health_checks_dogfooder/deprecated_dot_agent_config.py +64 -0
- erk/core/health_checks_dogfooder/legacy_claude_docs.py +69 -0
- erk/core/health_checks_dogfooder/legacy_config_locations.py +122 -0
- erk/core/health_checks_dogfooder/legacy_erk_docs_agent.py +61 -0
- erk/core/health_checks_dogfooder/legacy_erk_kits_folder.py +60 -0
- erk/core/health_checks_dogfooder/legacy_hook_settings.py +104 -0
- erk/core/health_checks_dogfooder/legacy_kit_yaml.py +78 -0
- erk/core/health_checks_dogfooder/legacy_kits_toml.py +43 -0
- erk/core/health_checks_dogfooder/outdated_erk_skill.py +43 -0
- erk/core/implementation_queue/__init__.py +1 -0
- erk/core/implementation_queue/github/__init__.py +8 -0
- erk/core/implementation_queue/github/abc.py +7 -0
- erk/core/implementation_queue/github/noop.py +38 -0
- erk/core/implementation_queue/github/printing.py +43 -0
- erk/core/implementation_queue/github/real.py +119 -0
- erk/core/init_utils.py +227 -0
- erk/core/output_filter.py +338 -0
- erk/core/plan_store/__init__.py +6 -0
- erk/core/planner/__init__.py +1 -0
- erk/core/planner/registry_abc.py +8 -0
- erk/core/planner/registry_fake.py +129 -0
- erk/core/planner/registry_real.py +195 -0
- erk/core/planner/types.py +7 -0
- erk/core/pr_utils.py +30 -0
- erk/core/release_notes.py +263 -0
- erk/core/repo_discovery.py +126 -0
- erk/core/script_writer.py +41 -0
- erk/core/services/__init__.py +1 -0
- erk/core/services/plan_list_service.py +94 -0
- erk/core/shell.py +51 -0
- erk/core/user_feedback.py +11 -0
- erk/core/version_check.py +55 -0
- erk/core/workflow_display.py +75 -0
- erk/core/worktree_pool.py +190 -0
- erk/core/worktree_utils.py +300 -0
- erk/data/CHANGELOG.md +438 -0
- erk/data/__init__.py +1 -0
- erk/data/claude/agents/devrun.md +180 -0
- erk/data/claude/commands/erk/__init__.py +0 -0
- erk/data/claude/commands/erk/create-extraction-plan.md +360 -0
- erk/data/claude/commands/erk/fix-conflicts.md +25 -0
- erk/data/claude/commands/erk/git-pr-push.md +345 -0
- erk/data/claude/commands/erk/implement-stacked-plan.md +96 -0
- erk/data/claude/commands/erk/land.md +193 -0
- erk/data/claude/commands/erk/objective-create.md +370 -0
- erk/data/claude/commands/erk/objective-list.md +34 -0
- erk/data/claude/commands/erk/objective-next-plan.md +220 -0
- erk/data/claude/commands/erk/objective-update-with-landed-pr.md +216 -0
- erk/data/claude/commands/erk/plan-implement.md +202 -0
- erk/data/claude/commands/erk/plan-save.md +45 -0
- erk/data/claude/commands/erk/plan-submit.md +39 -0
- erk/data/claude/commands/erk/pr-address.md +367 -0
- erk/data/claude/commands/erk/pr-submit.md +58 -0
- erk/data/claude/skills/dignified-python/SKILL.md +48 -0
- erk/data/claude/skills/dignified-python/cli-patterns.md +155 -0
- erk/data/claude/skills/dignified-python/dignified-python-core.md +1190 -0
- erk/data/claude/skills/dignified-python/subprocess.md +99 -0
- erk/data/claude/skills/dignified-python/versions/python-3.10.md +517 -0
- erk/data/claude/skills/dignified-python/versions/python-3.11.md +536 -0
- erk/data/claude/skills/dignified-python/versions/python-3.12.md +662 -0
- erk/data/claude/skills/dignified-python/versions/python-3.13.md +653 -0
- erk/data/claude/skills/erk-diff-analysis/SKILL.md +27 -0
- erk/data/claude/skills/erk-diff-analysis/references/commit-message-prompt.md +78 -0
- erk/data/claude/skills/learned-docs/SKILL.md +362 -0
- erk/data/github/actions/setup-claude-erk/action.yml +11 -0
- erk/data/github/prompts/dignified-python-review.md +125 -0
- erk/data/github/workflows/dignified-python-review.yml +61 -0
- erk/data/github/workflows/erk-impl.yml +251 -0
- erk/hooks/__init__.py +1 -0
- erk/hooks/decorators.py +319 -0
- erk/status/__init__.py +8 -0
- erk/status/collectors/__init__.py +9 -0
- erk/status/collectors/base.py +52 -0
- erk/status/collectors/git.py +76 -0
- erk/status/collectors/github.py +81 -0
- erk/status/collectors/graphite.py +80 -0
- erk/status/collectors/impl.py +145 -0
- erk/status/models/__init__.py +4 -0
- erk/status/models/status_data.py +404 -0
- erk/status/orchestrator.py +169 -0
- erk/status/renderers/__init__.py +5 -0
- erk/status/renderers/simple.py +322 -0
- erk/tui/AGENTS.md +193 -0
- erk/tui/CLAUDE.md +1 -0
- erk/tui/__init__.py +1 -0
- erk/tui/app.py +1404 -0
- erk/tui/commands/__init__.py +1 -0
- erk/tui/commands/executor.py +66 -0
- erk/tui/commands/provider.py +165 -0
- erk/tui/commands/real_executor.py +63 -0
- erk/tui/commands/registry.py +121 -0
- erk/tui/commands/types.py +36 -0
- erk/tui/data/__init__.py +1 -0
- erk/tui/data/provider.py +492 -0
- erk/tui/data/types.py +104 -0
- erk/tui/filtering/__init__.py +1 -0
- erk/tui/filtering/logic.py +43 -0
- erk/tui/filtering/types.py +55 -0
- erk/tui/jsonl_viewer/__init__.py +1 -0
- erk/tui/jsonl_viewer/app.py +61 -0
- erk/tui/jsonl_viewer/models.py +208 -0
- erk/tui/jsonl_viewer/widgets.py +204 -0
- erk/tui/sorting/__init__.py +6 -0
- erk/tui/sorting/logic.py +55 -0
- erk/tui/sorting/types.py +68 -0
- erk/tui/styles/dash.tcss +95 -0
- erk/tui/widgets/__init__.py +1 -0
- erk/tui/widgets/command_output.py +112 -0
- erk/tui/widgets/plan_table.py +276 -0
- erk/tui/widgets/status_bar.py +116 -0
- erk-0.4.5.dist-info/METADATA +376 -0
- erk-0.4.5.dist-info/RECORD +331 -0
- erk-0.4.5.dist-info/WHEEL +4 -0
- erk-0.4.5.dist-info/entry_points.txt +2 -0
- erk-0.4.5.dist-info/licenses/LICENSE.md +3 -0
|
@@ -0,0 +1,360 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Create an extraction plan for documentation improvements
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# /erk:create-extraction-plan
|
|
6
|
+
|
|
7
|
+
Analyzes session context to identify documentation gaps and creates an extraction plan issue to track the improvements.
|
|
8
|
+
|
|
9
|
+
## Prerequisites
|
|
10
|
+
|
|
11
|
+
Before running this command, ensure `docs/learned/` exists and has at least one documentation file:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
# Initialize docs/learned if it doesn't exist
|
|
15
|
+
erk docs init
|
|
16
|
+
|
|
17
|
+
# Verify it's ready
|
|
18
|
+
ls docs/learned/*.md
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
If `docs/learned/` is missing or empty, the command will fail with a suggestion to run `erk docs init` first.
|
|
22
|
+
|
|
23
|
+
**Note:** Running `erk init` for a new project automatically initializes `docs/learned/` with template files (glossary.md, conventions.md, guide.md).
|
|
24
|
+
|
|
25
|
+
## Usage
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
/erk:create-extraction-plan [context]
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
**Arguments:**
|
|
32
|
+
|
|
33
|
+
- `[context]` - Optional. Free-form text that can specify:
|
|
34
|
+
- Session ID(s) to analyze (e.g., "session abc123")
|
|
35
|
+
- Focus/steering for extraction (e.g., "focus on CLI patterns")
|
|
36
|
+
- Or both (e.g., "sessions abc123 and def456, focus on testing")
|
|
37
|
+
|
|
38
|
+
**Examples:**
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
# Analyze current conversation
|
|
42
|
+
/erk:create-extraction-plan
|
|
43
|
+
|
|
44
|
+
# Current conversation with focus
|
|
45
|
+
/erk:create-extraction-plan "focus on the CLI patterns we discussed"
|
|
46
|
+
|
|
47
|
+
# Analyze specific session log
|
|
48
|
+
/erk:create-extraction-plan "session abc123"
|
|
49
|
+
|
|
50
|
+
# Multiple sessions with steering
|
|
51
|
+
/erk:create-extraction-plan "sessions abc123 and def456, focus on testing patterns"
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
## What It Does
|
|
55
|
+
|
|
56
|
+
1. Analyzes session(s) for documentation gaps
|
|
57
|
+
2. Identifies both learning gaps (Category A) and teaching gaps (Category B)
|
|
58
|
+
3. Creates a GitHub issue with `erk-plan` + `erk-extraction` labels
|
|
59
|
+
4. Outputs next steps for implementation
|
|
60
|
+
|
|
61
|
+
## What You'll Get
|
|
62
|
+
|
|
63
|
+
Suggestions organized by category:
|
|
64
|
+
|
|
65
|
+
**Category A (Learning Gaps):**
|
|
66
|
+
|
|
67
|
+
- Documentation that would have made the session faster
|
|
68
|
+
- Usually agent docs or skills for patterns/workflows
|
|
69
|
+
|
|
70
|
+
**Category B (Teaching Gaps):**
|
|
71
|
+
|
|
72
|
+
- Documentation for what was BUILT in the session
|
|
73
|
+
- Usually glossary entries, routing updates, reference updates
|
|
74
|
+
|
|
75
|
+
---
|
|
76
|
+
|
|
77
|
+
## Agent Instructions
|
|
78
|
+
|
|
79
|
+
You are creating an extraction plan from session analysis.
|
|
80
|
+
|
|
81
|
+
### Step 1: Determine Source and Context
|
|
82
|
+
|
|
83
|
+
Parse the context argument (if provided) for:
|
|
84
|
+
|
|
85
|
+
1. **Session IDs** - Look for patterns like "session abc123" or UUID-like strings
|
|
86
|
+
2. **Steering context** - Remaining text provides focus for the extraction analysis
|
|
87
|
+
|
|
88
|
+
**If no explicit session IDs provided:**
|
|
89
|
+
|
|
90
|
+
Run the session discovery helper with size filtering to exclude tiny sessions:
|
|
91
|
+
|
|
92
|
+
```bash
|
|
93
|
+
erk exec list-sessions --min-size 1024
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
The JSON output includes:
|
|
97
|
+
|
|
98
|
+
- `branch_context.is_on_trunk`: Whether on main/master branch
|
|
99
|
+
- `current_session_id`: Current session ID from SESSION_CONTEXT env
|
|
100
|
+
- `sessions`: List of recent sessions with metadata (only meaningful sessions >= 1KB)
|
|
101
|
+
- `project_dir`: Path to session logs
|
|
102
|
+
- `filtered_count`: Number of tiny sessions filtered out
|
|
103
|
+
|
|
104
|
+
**Behavior based on branch context:**
|
|
105
|
+
|
|
106
|
+
**If `branch_context.is_on_trunk` is true (on main/master):**
|
|
107
|
+
|
|
108
|
+
Use `current_session_id` only. Skip user prompt - analyze current conversation.
|
|
109
|
+
|
|
110
|
+
**If `branch_context.is_on_trunk` is false (feature branch):**
|
|
111
|
+
|
|
112
|
+
First, determine if the current session is "trivial" (< 1KB, typically just launching a command like this one). Check if the current session appears in the filtered results - if not, it was filtered out as tiny.
|
|
113
|
+
|
|
114
|
+
**Common pattern**: User launches a fresh session solely to run `/erk:create-extraction-plan` on substantial work from a previous session. In this case, auto-select the substantial session(s) without prompting.
|
|
115
|
+
|
|
116
|
+
**If current session is tiny AND exactly 1 substantial session exists:**
|
|
117
|
+
|
|
118
|
+
Auto-select the substantial session without prompting. Briefly inform user:
|
|
119
|
+
|
|
120
|
+
> "Auto-selected session [id] (current session is trivial, analyzing the substantial session)"
|
|
121
|
+
|
|
122
|
+
**If current session is tiny AND 2+ substantial sessions exist:**
|
|
123
|
+
|
|
124
|
+
Auto-select ALL substantial sessions without prompting. Briefly inform user:
|
|
125
|
+
|
|
126
|
+
> "Auto-selected [N] sessions (current session is trivial, analyzing all substantial sessions)"
|
|
127
|
+
|
|
128
|
+
**If current session is substantial AND exactly 1 total session (itself):**
|
|
129
|
+
|
|
130
|
+
Proceed with current session analysis. No prompt needed.
|
|
131
|
+
|
|
132
|
+
**If current session is substantial AND other substantial sessions exist:**
|
|
133
|
+
|
|
134
|
+
Present sessions to user for selection:
|
|
135
|
+
|
|
136
|
+
> "Found these sessions for this worktree:
|
|
137
|
+
>
|
|
138
|
+
> 1. [Dec 3, 11:38 AM] 4f852cdc... - how many session ids does... (current)
|
|
139
|
+
> 2. [Dec 3, 11:35 AM] d8f6bb38... - no rexporting due to backwards...
|
|
140
|
+
> 3. [Dec 3, 11:28 AM] d82e9306... - /gt:pr-submit
|
|
141
|
+
>
|
|
142
|
+
> Which sessions should I analyze? (1=current only, 2=all, or list session numbers like '1,3')"
|
|
143
|
+
|
|
144
|
+
Wait for user selection before proceeding.
|
|
145
|
+
|
|
146
|
+
**If 0 sessions remain after filtering (all tiny including current):**
|
|
147
|
+
|
|
148
|
+
Use current session only despite being tiny. Inform user:
|
|
149
|
+
|
|
150
|
+
> "No meaningful sessions found (all sessions were < 1KB). Analyzing current conversation anyway."
|
|
151
|
+
|
|
152
|
+
**If explicit session IDs found in context:**
|
|
153
|
+
|
|
154
|
+
Load and preprocess the session logs. Session logs are stored in `project_dir` as flat files:
|
|
155
|
+
|
|
156
|
+
- Main sessions: `<session-id>.jsonl`
|
|
157
|
+
- Agent logs: `agent-<agent-id>.jsonl`
|
|
158
|
+
|
|
159
|
+
Match session IDs against filenames (full or partial prefix match), then preprocess:
|
|
160
|
+
|
|
161
|
+
```bash
|
|
162
|
+
erk exec preprocess-session <project-dir>/<session-id>.jsonl --stdout
|
|
163
|
+
```
|
|
164
|
+
|
|
165
|
+
### Step 2: Check for Associated Plan Issue Session Content
|
|
166
|
+
|
|
167
|
+
If on a feature branch (not trunk), check if this branch has an associated plan issue:
|
|
168
|
+
|
|
169
|
+
```bash
|
|
170
|
+
# Check if .impl/issue.json exists
|
|
171
|
+
cat .impl/issue.json 2>/dev/null
|
|
172
|
+
```
|
|
173
|
+
|
|
174
|
+
**If issue.json exists AND has valid `issue_number`:**
|
|
175
|
+
|
|
176
|
+
1. Extract the `issue_number` from the JSON response
|
|
177
|
+
2. Attempt to extract session content from the plan issue:
|
|
178
|
+
```bash
|
|
179
|
+
erk exec extract-session-from-issue <issue_number> --stdout
|
|
180
|
+
```
|
|
181
|
+
3. If session XML is returned (not an error), store it as "plan issue session content"
|
|
182
|
+
4. Note the session IDs from the stderr JSON output
|
|
183
|
+
|
|
184
|
+
**If issue.json doesn't exist OR extraction fails:** Continue with session log analysis only (this is normal for branches not created via `erk implement`).
|
|
185
|
+
|
|
186
|
+
### Step 3: Verify Existing Documentation
|
|
187
|
+
|
|
188
|
+
Before analyzing gaps, scan the project for existing documentation:
|
|
189
|
+
|
|
190
|
+
```bash
|
|
191
|
+
# Check for existing agent docs
|
|
192
|
+
ls -la docs/learned/ 2>/dev/null || echo "No docs/learned/ directory"
|
|
193
|
+
|
|
194
|
+
# Check for existing skills
|
|
195
|
+
ls -la .claude/skills/ 2>/dev/null || echo "No .claude/skills/ directory"
|
|
196
|
+
|
|
197
|
+
# Check root-level docs
|
|
198
|
+
ls -la *.md README* CONTRIBUTING* 2>/dev/null
|
|
199
|
+
```
|
|
200
|
+
|
|
201
|
+
Create a mental inventory of what's already documented. For each potential suggestion later, verify it doesn't substantially overlap with existing docs.
|
|
202
|
+
|
|
203
|
+
### Step 4: Mine Full Session Context
|
|
204
|
+
|
|
205
|
+
**CRITICAL**: Session analysis must examine the FULL conversation, not just recent messages.
|
|
206
|
+
|
|
207
|
+
**Compaction Awareness:**
|
|
208
|
+
|
|
209
|
+
Long sessions may have been "compacted" - earlier messages summarized to save context. However:
|
|
210
|
+
|
|
211
|
+
- The pre-compaction messages are still part of the SAME LOGICAL CONVERSATION
|
|
212
|
+
- Valuable research, discoveries, and reasoning often occurred BEFORE compaction
|
|
213
|
+
- Look for compaction markers and explicitly include pre-compaction content in your analysis
|
|
214
|
+
- Session logs (`.jsonl` files) contain the full uncompacted conversation
|
|
215
|
+
|
|
216
|
+
**Subagent Mining:**
|
|
217
|
+
|
|
218
|
+
The Task tool spawns specialized subagents (Explore, Plan, etc.) that often do the most valuable work:
|
|
219
|
+
|
|
220
|
+
1. **Identify all Task tool invocations** - Look for `<invoke name="Task">` blocks
|
|
221
|
+
2. **Read subagent outputs** - Each Task returns a detailed report with discoveries
|
|
222
|
+
3. **Mine Explore agents** - These do codebase exploration and document what they found
|
|
223
|
+
4. **Mine Plan agents** - These reason through approaches and capture design decisions
|
|
224
|
+
5. **Don't just summarize** - Extract the specific insights, patterns, and learnings discovered
|
|
225
|
+
|
|
226
|
+
**What to look for in subagent outputs:**
|
|
227
|
+
|
|
228
|
+
- Files they read and what they learned from them
|
|
229
|
+
- Patterns they discovered in the codebase
|
|
230
|
+
- Design decisions they reasoned through
|
|
231
|
+
- External documentation they fetched (WebFetch, WebSearch)
|
|
232
|
+
- Comparisons between different approaches
|
|
233
|
+
|
|
234
|
+
**Example mining:**
|
|
235
|
+
|
|
236
|
+
If a Plan agent's output contains:
|
|
237
|
+
|
|
238
|
+
> "The existing provider pattern in data/provider.py uses ABC with abstract methods.
|
|
239
|
+
> This follows erk's fake-driven testing pattern where FakeProvider implements the same interface."
|
|
240
|
+
|
|
241
|
+
This indicates:
|
|
242
|
+
|
|
243
|
+
- ABC pattern documentation might need updating
|
|
244
|
+
- The fake-driven-testing skill connection was discovered
|
|
245
|
+
- This is Category A (learning) if not documented, or confirms existing docs if it is
|
|
246
|
+
|
|
247
|
+
### Steps 5-8: Analyze Session
|
|
248
|
+
|
|
249
|
+
@../../../.erk/docs/kits/erk/includes/extract-docs-analysis-shared.md
|
|
250
|
+
|
|
251
|
+
### Step 9: Combine Session Sources
|
|
252
|
+
|
|
253
|
+
When both **plan issue session content** (from Step 2) AND **session logs** (from Step 1) are available, analyze them together:
|
|
254
|
+
|
|
255
|
+
**Plan Issue Session Content** (from Step 2):
|
|
256
|
+
|
|
257
|
+
- Contains the PLANNING session - research, exploration, design decisions
|
|
258
|
+
- Look for: external docs consulted, codebase patterns discovered, trade-offs considered
|
|
259
|
+
- Particularly valuable for **Category A (Learning Gaps)** - what would have made planning faster
|
|
260
|
+
|
|
261
|
+
**Session Logs** (from Step 1):
|
|
262
|
+
|
|
263
|
+
- Contains the IMPLEMENTATION session(s) - actual work done
|
|
264
|
+
- Look for: features built, patterns implemented, problems solved
|
|
265
|
+
- Particularly valuable for **Category B (Teaching Gaps)** - documentation for what was built
|
|
266
|
+
|
|
267
|
+
When presenting analysis, clearly label which source revealed each insight:
|
|
268
|
+
|
|
269
|
+
- "[Plan session]" for insights from the plan issue
|
|
270
|
+
- "[Impl session]" for insights from session logs
|
|
271
|
+
|
|
272
|
+
### Step 10: Confirm with User
|
|
273
|
+
|
|
274
|
+
**If analyzing current conversation (no session IDs in context):**
|
|
275
|
+
|
|
276
|
+
Present findings neutrally and let the user decide value:
|
|
277
|
+
|
|
278
|
+
> "Based on this session, I identified these potential documentation gaps:
|
|
279
|
+
>
|
|
280
|
+
> 1. [Brief title] - [One sentence why]
|
|
281
|
+
> 2. [Brief title] - [One sentence why]
|
|
282
|
+
> 3. ...
|
|
283
|
+
>
|
|
284
|
+
> Which of these would be valuable for future sessions? I'll generate detailed suggestions and draft content for the ones you select."
|
|
285
|
+
|
|
286
|
+
**IMPORTANT: Do NOT editorialize about whether gaps are "worth" documenting, "minor", "not broadly applicable", etc. Present findings neutrally and let the user decide. Your job is to surface potential gaps, not gatekeep what's valuable.**
|
|
287
|
+
|
|
288
|
+
Wait for user response before generating full output.
|
|
289
|
+
|
|
290
|
+
**If analyzing session logs (session IDs were specified):**
|
|
291
|
+
|
|
292
|
+
Skip confirmation and output all suggestions immediately since the user explicitly chose to analyze specific session(s).
|
|
293
|
+
|
|
294
|
+
### Step 11: Format Plan Content
|
|
295
|
+
|
|
296
|
+
Format the selected suggestions as an implementation plan with this structure:
|
|
297
|
+
|
|
298
|
+
- **Objective**: Brief statement of what documentation will be added/improved
|
|
299
|
+
- **Source Information**: Session ID(s) that were analyzed
|
|
300
|
+
- **Documentation Items**: Each suggestion should include:
|
|
301
|
+
- Type (Category A or B)
|
|
302
|
+
- Location (where in the docs structure)
|
|
303
|
+
- Action (add, update, create)
|
|
304
|
+
- Priority (based on effort and impact)
|
|
305
|
+
- Content (the actual draft content)
|
|
306
|
+
|
|
307
|
+
### Step 12: Create Extraction Plan Issue
|
|
308
|
+
|
|
309
|
+
**CRITICAL: Use this exact CLI command. Do NOT use `gh issue create` directly.**
|
|
310
|
+
|
|
311
|
+
Get the session ID from the `SESSION_CONTEXT` reminder in your conversation context.
|
|
312
|
+
|
|
313
|
+
```bash
|
|
314
|
+
erk exec create-extraction-plan \
|
|
315
|
+
--plan-content="<the formatted plan content>" \
|
|
316
|
+
--session-id="<session-id-from-SESSION_CONTEXT>" \
|
|
317
|
+
--extraction-session-ids="<comma-separated-session-ids-that-were-analyzed>"
|
|
318
|
+
```
|
|
319
|
+
|
|
320
|
+
This command automatically:
|
|
321
|
+
|
|
322
|
+
1. Writes plan to `.erk/scratch/<session-id>/extraction-plan.md`
|
|
323
|
+
2. Creates GitHub issue with `erk-plan` + `erk-extraction` labels
|
|
324
|
+
3. Sets `plan_type: extraction` in plan-header metadata
|
|
325
|
+
|
|
326
|
+
**Note:** The current session ID (from `SESSION_CONTEXT` reminder) is used as `--session-id` for scratch storage. The `--extraction-session-ids` should list all session IDs that were analyzed (may differ from current session).
|
|
327
|
+
|
|
328
|
+
### Step 13: Verify and Output
|
|
329
|
+
|
|
330
|
+
Run verification to ensure the issue was created with proper Schema v2 compliance:
|
|
331
|
+
|
|
332
|
+
```bash
|
|
333
|
+
erk plan check <issue_number>
|
|
334
|
+
```
|
|
335
|
+
|
|
336
|
+
Display next steps:
|
|
337
|
+
|
|
338
|
+
```
|
|
339
|
+
✅ Extraction plan saved to GitHub
|
|
340
|
+
|
|
341
|
+
**Issue:** [title from result]
|
|
342
|
+
[url from result]
|
|
343
|
+
|
|
344
|
+
**Next steps:**
|
|
345
|
+
|
|
346
|
+
View the plan:
|
|
347
|
+
gh issue view [issue_number] --web
|
|
348
|
+
|
|
349
|
+
Implement the plan:
|
|
350
|
+
erk implement [issue_number]
|
|
351
|
+
|
|
352
|
+
Submit for remote implementation:
|
|
353
|
+
erk plan submit [issue_number]
|
|
354
|
+
```
|
|
355
|
+
|
|
356
|
+
---
|
|
357
|
+
|
|
358
|
+
## Output
|
|
359
|
+
|
|
360
|
+
After analysis (and user confirmation if applicable), display suggestions using the output format from the analysis guide, then proceed to create the extraction plan issue.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Fix all merge conflicts and continue the git rebase
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# Fix Merge Conflicts
|
|
6
|
+
|
|
7
|
+
Fix all merge conflicts and continue the git rebase.
|
|
8
|
+
|
|
9
|
+
## Steps
|
|
10
|
+
|
|
11
|
+
1. **Check status** - Run `git status` to understand the state of the rebase and identify conflicted files
|
|
12
|
+
|
|
13
|
+
2. **For each conflicted file:**
|
|
14
|
+
|
|
15
|
+
<!-- prettier-ignore -->
|
|
16
|
+
@../../../.erk/docs/kits/erk/includes/conflict-resolution.md
|
|
17
|
+
|
|
18
|
+
3. **After resolving all conflicts:**
|
|
19
|
+
- If project memory includes a precommit check, run it and ensure no failures
|
|
20
|
+
- Stage the resolved files with `git add`
|
|
21
|
+
- Continue the rebase with `gt continue`
|
|
22
|
+
|
|
23
|
+
4. **Loop** - If the rebase continues with more conflicts, repeat the process
|
|
24
|
+
|
|
25
|
+
5. **Verify completion** - Check git status and recent commit history to confirm success
|