bingocode 1.0.14 → 1.0.15

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 CHANGED
@@ -1,38 +1,29 @@
1
- DISCLAIMER AND LICENSE
2
-
3
- Copyright (c) 2026 Anthropic, PBC. All rights reserved for the original source code.
4
-
5
- This repository is based on the Claude Code source code leaked from the Anthropic
6
- npm registry on 2026-03-31. All original source code copyrights belong to Anthropic.
7
-
8
- THIS SOFTWARE IS PROVIDED FOR EDUCATIONAL AND RESEARCH PURPOSES ONLY.
9
-
10
- The purpose of this repository is to facilitate the study and research of AI Agent
11
- engineering, including but not limited to:
12
- - Agent architecture and design patterns
13
- - Tool use and function calling mechanisms
14
- - Multi-agent orchestration
15
- - Terminal UI (TUI) implementation for AI applications
16
- - MCP (Model Context Protocol) integration
17
-
18
- RESTRICTIONS:
19
-
20
- 1. This software SHALL NOT be used for any commercial purposes.
21
- 2. This software SHALL NOT be used to compete with or replicate Anthropic's
22
- commercial products or services.
23
- 3. This software SHALL NOT be redistributed, sublicensed, or sold in any form.
24
- 4. Users SHALL comply with all applicable laws and regulations in their jurisdiction.
25
-
26
- NO WARRANTY:
27
-
28
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
29
- INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
30
- PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
31
- HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
32
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
33
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
34
-
35
- By using this software, you acknowledge that:
36
- - You understand this is leaked source code and all original rights belong to Anthropic.
37
- - You will use it solely for learning and research of Agent engineering.
38
- - You assume all legal risks and responsibilities arising from the use of this software.
1
+ MIT License
2
+
3
+ Copyright (c) 2025-2026 Leanchy
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+
23
+ ---
24
+
25
+ BingoCode is an independent open-source project by Leanchy, built upon and
26
+ substantially modified from Claude Code (originally developed by Anthropic, PBC).
27
+ Original upstream components remain the property of their respective copyright holders.
28
+ All modifications, extensions, and original contributions in this repository are
29
+ copyright Leanchy, released under the MIT License above.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bingocode",
3
- "version": "1.0.14",
3
+ "version": "1.0.15",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "claude": "bin/claude-win.cjs",
@@ -102,6 +102,6 @@
102
102
  "doc": "docs"
103
103
  },
104
104
  "keywords": [],
105
- "author": "",
106
- "license": "ISC"
105
+ "author": "Leanchy",
106
+ "license": "MIT"
107
107
  }