feat(kugetsu): add KUGETSU_VERBOSITY for PM agent output control #103

Merged
shoko merged 1 commits from feat/issue-46-verbosity-v6 into main 2026-04-02 05:48:10 +02:00
Owner

Summary

Fix for #46 - PM Agent verbosity control.

Changes

Add KUGETSU_VERBOSITY environment variable with three modes:

Mode Behavior
verbose High verbosity, all context and details
default Normal balanced output (default)
quiet Minimal output, only essential info

Implementation

  1. Added KUGETSU_VERBOSITY variable with default default
  2. Created verbosity markdown templates in $KUGETSU_DIR/verbosity/
  3. Export KUGETSU_VERBOSITY in cmd_delegate when running opencode
  4. PM agent reads verbosity markdown and appends to context
  5. Added get_verbosity_context() function to read verbosity files
  6. Added init_verbosity_templates() to create default verbosity files

Usage

# Set verbosity in ~/.kugetsu/config
KUGETSU_VERBOSITY=default

PM agent skill reads KUGETSU_VERBOSITY and injects the appropriate verbosity markdown into context.

Fixes #46

## Summary Fix for #46 - PM Agent verbosity control. ## Changes Add `KUGETSU_VERBOSITY` environment variable with three modes: | Mode | Behavior | |------|----------| | `verbose` | High verbosity, all context and details | | `default` | Normal balanced output (default) | | `quiet` | Minimal output, only essential info | ## Implementation 1. Added `KUGETSU_VERBOSITY` variable with default `default` 2. Created verbosity markdown templates in `$KUGETSU_DIR/verbosity/` 3. Export `KUGETSU_VERBOSITY` in `cmd_delegate` when running opencode 4. PM agent reads verbosity markdown and appends to context 5. Added `get_verbosity_context()` function to read verbosity files 6. Added `init_verbosity_templates()` to create default verbosity files ## Usage ```bash # Set verbosity in ~/.kugetsu/config KUGETSU_VERBOSITY=default ``` PM agent skill reads `KUGETSU_VERBOSITY` and injects the appropriate verbosity markdown into context. Fixes #46
shoko added 1 commit 2026-04-02 05:47:58 +02:00
shoko merged commit 3d6abdf678 into main 2026-04-02 05:48:10 +02:00
Sign in to join this conversation.