@damper/cli 0.7.0 → 0.7.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.
@@ -121,7 +121,8 @@ export async function launchClaude(options) {
121
121
  // Use spawn with stdio: 'inherit' for proper TTY passthrough
122
122
  // Signals (Ctrl+C, Escape) are handled naturally since child inherits the terminal
123
123
  await new Promise((resolve) => {
124
- const child = spawn('claude', [initialPrompt], {
124
+ const args = yolo ? ['--dangerously-skip-permissions', initialPrompt] : [initialPrompt];
125
+ const child = spawn('claude', args, {
125
126
  cwd,
126
127
  stdio: 'inherit',
127
128
  env: {
@@ -96,7 +96,7 @@ export class DamperApi {
96
96
  // Agent Instructions
97
97
  async getAgentInstructions(format = 'section') {
98
98
  // The MCP server has this hardcoded, so we'll return the same content
99
- const lastModified = '2025-02-05';
99
+ const lastModified = '2025-02-06';
100
100
  const section = `## Task Management with Damper MCP
101
101
 
102
102
  > Last updated: ${lastModified}
@@ -127,6 +127,10 @@ This project uses Damper MCP for task tracking. **You MUST follow this workflow.
127
127
  - \`add_to_changelog\` - Manually add completed tasks to a changelog
128
128
  - \`publish_changelog\` - Publish with optional email notifications and Twitter posting
129
129
 
130
+ ### Project Settings
131
+ - \`get_project_settings\` - View current settings (completion checklist, etc.)
132
+ - \`update_project_settings\` - Configure completion checklist and other agent-relevant settings
133
+
130
134
  ### At Session End (MANDATORY)
131
135
  - ALWAYS call \`complete_task\` (if done) or \`abandon_task\` (if stopping early)
132
136
  - NEVER leave a started task without completing or abandoning it
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@damper/cli",
3
- "version": "0.7.0",
3
+ "version": "0.7.1",
4
4
  "description": "CLI tool for orchestrating Damper task workflows with Claude Code",
5
5
  "author": "Damper <hello@usedamper.com>",
6
6
  "repository": {