@anthropic-ai/claude-code 1.0.9 → 1.0.11
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/README.md +16 -24
- package/cli.js +690 -652
- package/package.json +1 -1
- package/vendor/claude-code.vsix +0 -0
package/README.md
CHANGED
|
@@ -1,42 +1,34 @@
|
|
|
1
1
|
# Claude Code
|
|
2
2
|
|
|
3
|
-

|
|
3
|
+
 [![npm]](https://www.npmjs.com/package/@anthropic-ai/claude-code)
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
[npm]: https://img.shields.io/npm/v/@anthropic-ai/claude-code.svg?style=flat-square
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
- Edit files and fix bugs across your codebase
|
|
10
|
-
- Answer questions about your code's architecture and logic
|
|
11
|
-
- Execute and fix tests, lint, and other commands
|
|
12
|
-
- Search through git history, resolve merge conflicts, and create commits and PRs
|
|
7
|
+
Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows -- all through natural language commands. Use it in your terminal, IDE, or tag @claude on Github.
|
|
13
8
|
|
|
14
9
|
**Learn more in the [official documentation](https://docs.anthropic.com/en/docs/claude-code/overview)**.
|
|
15
10
|
|
|
11
|
+
<img src="https://github.com/anthropics/claude-code/blob/main/demo.gif?raw=1" />
|
|
12
|
+
|
|
16
13
|
## Get started
|
|
17
14
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
</li>
|
|
26
|
-
<li>
|
|
27
|
-
Complete the one-time OAuth process with your Claude Max or Anthropic Console account.
|
|
28
|
-
</li>
|
|
29
|
-
</ol>
|
|
15
|
+
1. Install Claude Code:
|
|
16
|
+
|
|
17
|
+
```sh
|
|
18
|
+
npm install -g @anthropic-ai/claude-code
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
2. Navigate to your project directory and run `claude`.
|
|
30
22
|
|
|
31
|
-
|
|
23
|
+
## Reporting Bugs
|
|
32
24
|
|
|
33
|
-
We welcome feedback. Use the `/bug` command to report issues directly within Claude Code, or file a [GitHub issue](https://github.com/anthropics/claude-code/issues).
|
|
25
|
+
We welcome feedback during this beta period. Use the `/bug` command to report issues directly within Claude Code, or file a [GitHub issue](https://github.com/anthropics/claude-code/issues).
|
|
34
26
|
|
|
35
|
-
|
|
27
|
+
## Data collection, usage, and retention
|
|
36
28
|
|
|
37
29
|
When you use Claude Code, we collect feedback, which includes usage data (such as code acceptance or rejections), associated conversation data, and user feedback submitted via the `/bug` command.
|
|
38
30
|
|
|
39
|
-
|
|
31
|
+
### How we use your data
|
|
40
32
|
|
|
41
33
|
We may use feedback to improve our products and services, but we will not train generative models using your feedback from Claude Code. Given their potentially sensitive nature, we store user feedback transcripts for only 30 days.
|
|
42
34
|
|