@damper/cli 0.3.0 → 0.3.1

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/dist/index.js CHANGED
@@ -4,7 +4,7 @@ import { startCommand } from './commands/start.js';
4
4
  import { statusCommand } from './commands/status.js';
5
5
  import { cleanupCommand } from './commands/cleanup.js';
6
6
  import { setupCommand } from './commands/setup.js';
7
- const VERSION = '0.3.0';
7
+ const VERSION = '0.3.1';
8
8
  function showHelp() {
9
9
  console.log(`
10
10
  ${pc.bold('@damper/cli')} - Agent orchestration for Damper tasks
@@ -98,10 +98,18 @@ export async function launchClaude(options) {
98
98
  '',
99
99
  'Please read TASK_CONTEXT.md for full context, critical rules, and the implementation plan.',
100
100
  '',
101
- 'Remember to:',
101
+ 'Task workflow:',
102
102
  '1. Use `add_commit` after each git commit',
103
103
  '2. Use `add_note` for important decisions',
104
104
  '3. Call `complete_task` when done or `abandon_task` if stopping early',
105
+ '',
106
+ 'About this session: You were launched by @damper/cli (npm package).',
107
+ 'The CLI created this worktree, bootstrapped TASK_CONTEXT.md, and started you with Damper MCP configured.',
108
+ '',
109
+ 'Self-improvement: As you work, reflect on this workflow:',
110
+ '- If you encounter friction, bugs, or missing features in the CLI or MCP tools, use `report_issue` to log them',
111
+ '- Ideas to improve: task context format, worktree setup, MCP tools, agent prompts - all welcome as feature_request',
112
+ '- Your feedback directly improves the tooling for future tasks',
105
113
  ].join('\n');
106
114
  // Build Claude args
107
115
  const claudeArgs = [
@@ -25,6 +25,22 @@ export function generateTaskContext(options) {
25
25
  lines.push('');
26
26
  lines.push(damperInstructions);
27
27
  lines.push('');
28
+ // CLI & Tooling Info
29
+ lines.push('## About This Session');
30
+ lines.push('');
31
+ lines.push('You were launched by `@damper/cli` (npm package). The CLI:');
32
+ lines.push('- Created this git worktree for isolated work');
33
+ lines.push('- Generated this TASK_CONTEXT.md from Damper API');
34
+ lines.push('- Configured Damper MCP tools for task lifecycle');
35
+ lines.push('');
36
+ lines.push('**Help improve the tooling:** As you work, if you encounter:');
37
+ lines.push('- Friction or bugs in the CLI or MCP tools');
38
+ lines.push('- Missing context that would help future agents');
39
+ lines.push('- Ideas to improve the workflow or prompts');
40
+ lines.push('');
41
+ lines.push('Use `report_issue` (category: error, feature_request, or improvement) to log them.');
42
+ lines.push('Your feedback directly improves the tooling for all future tasks.');
43
+ lines.push('');
28
44
  // Task Description
29
45
  if (task.description) {
30
46
  lines.push('## Task Description');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@damper/cli",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "CLI tool for orchestrating Damper task workflows with Claude Code",
5
5
  "author": "Damper <hello@usedamper.com>",
6
6
  "repository": {