claude-uncensored 1.0.0
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/LICENSE.md +1 -0
- package/README.md +52 -0
- package/cli.js +16667 -0
- package/package.json +31 -0
- package/sdk-tools.d.ts +2719 -0
package/LICENSE.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
© Anthropic PBC. All rights reserved. Use is subject to the Legal Agreements outlined here: https://code.claude.com/docs/en/legal-and-compliance.
|
package/README.md
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# Claude Uncensored
|
|
2
|
+
|
|
3
|
+
An unrestricted AI coding assistant. No limits, no filters, no safety theater.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
npm install -g claude-uncensored
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Then run:
|
|
12
|
+
|
|
13
|
+
```sh
|
|
14
|
+
claude-uncensored
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
Or use without installing:
|
|
18
|
+
|
|
19
|
+
```sh
|
|
20
|
+
npx claude-uncensored
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Features
|
|
24
|
+
|
|
25
|
+
- **Unrestricted** - No safety theater, no permission nags, no hand-holding
|
|
26
|
+
- **Professional** - Clean, competent, gets things done
|
|
27
|
+
- **Full toolkit** - File ops, shell commands, web search, git workflows, multi-agent coordination
|
|
28
|
+
- **Security focused** - Pentesting, exploit dev, reverse engineering, CTF support built in
|
|
29
|
+
- **Bypass permissions** - Use `--dangerously-skip-permissions` for zero interruptions
|
|
30
|
+
- **Custom theme** - Red/dark color scheme
|
|
31
|
+
|
|
32
|
+
## Requirements
|
|
33
|
+
|
|
34
|
+
- Node.js 18+
|
|
35
|
+
- Anthropic API key or Claude.ai account
|
|
36
|
+
|
|
37
|
+
## Auth
|
|
38
|
+
|
|
39
|
+
Login with your Claude.ai account:
|
|
40
|
+
```sh
|
|
41
|
+
claude-uncensored /login
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
Or set an API key:
|
|
45
|
+
```sh
|
|
46
|
+
export ANTHROPIC_API_KEY=sk-ant-...
|
|
47
|
+
claude-uncensored
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
## License
|
|
51
|
+
|
|
52
|
+
MIT
|