Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,11 @@ src/components/

**TypeScript Standards:**

- Enable strict mode - no `any` types allowed
- Enable strict mode - no `any` types allowed (linter will catch violations)
- Use interfaces for all props and data structures
- Prefer union types over enums for string constants
- Use optional chaining (`?.`) and nullish coalescing (`??`)
- NEVER use `any` - always use proper types or `unknown` when type is truly unknown

**Error Handling:**

Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

![Claude Runner Logo](https://raw.githubusercontent.com/codingworkflow/claude-runner/main/assets/icon.png)

Create and run multi-step tasks in your VS Code. Create workflows & save them to reuse.
Chat, create and run multi-step tasks in your VS Code. Create workflows & save them to reuse.
Get cost usage (estimate if you use subscription), and check conversation history.

## Key Features
Expand All @@ -13,12 +13,15 @@ Get cost usage (estimate if you use subscription), and check conversation histor

Create and execute sophisticated multi-step workflows:

- Chat directly in VScode
- Chain multiple Claude Code tasks together
- Mix different Claude models per task or keep in Auto mode
- Session continuity between tasks
- Save and reuse pipelines
- Format similar to Claude Code GitHub action

![Chat](https://raw.githubusercontent.com/codingworkflow/claude-runner/main/assets/chatui.png)

![Create Workflow](https://raw.githubusercontent.com/codingworkflow/claude-runner/main/assets/pipeline.png)

![Save Workflow](https://raw.githubusercontent.com/codingworkflow/claude-runner/main/assets/savepipeline.png)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.2
0.4.0
Binary file added assets/chatui.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "claude-runner",
"displayName": "Claude Runner",
"description": "Execute Claude Code commands directly from VS Code with an intuitive interface",
"version": "0.3.2",
"version": "0.4.0",
"publisher": "Codingworkflow",
"private": false,
"license": "GPL-3.0",
Expand Down
Loading
Loading