helloagents 1.1.0 → 2.2.8
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 +51 -0
- package/README.md +444 -841
- package/bin/cli.mjs +106 -0
- package/package.json +23 -38
- package/Claude/Skills/CN/CLAUDE.md +0 -998
- package/Claude/Skills/CN/skills/helloagents/analyze/SKILL.md +0 -187
- package/Claude/Skills/CN/skills/helloagents/design/SKILL.md +0 -261
- package/Claude/Skills/CN/skills/helloagents/develop/SKILL.md +0 -352
- package/Claude/Skills/CN/skills/helloagents/kb/SKILL.md +0 -249
- package/Claude/Skills/CN/skills/helloagents/templates/SKILL.md +0 -451
- package/Claude/Skills/EN/CLAUDE.md +0 -998
- package/Claude/Skills/EN/skills/helloagents/analyze/SKILL.md +0 -187
- package/Claude/Skills/EN/skills/helloagents/design/SKILL.md +0 -261
- package/Claude/Skills/EN/skills/helloagents/develop/SKILL.md +0 -352
- package/Claude/Skills/EN/skills/helloagents/kb/SKILL.md +0 -249
- package/Claude/Skills/EN/skills/helloagents/templates/SKILL.md +0 -451
- package/Codex/Skills/CN/AGENTS.md +0 -998
- package/Codex/Skills/CN/skills/helloagents/analyze/SKILL.md +0 -187
- package/Codex/Skills/CN/skills/helloagents/design/SKILL.md +0 -261
- package/Codex/Skills/CN/skills/helloagents/develop/SKILL.md +0 -352
- package/Codex/Skills/CN/skills/helloagents/kb/SKILL.md +0 -249
- package/Codex/Skills/CN/skills/helloagents/templates/SKILL.md +0 -451
- package/Codex/Skills/EN/AGENTS.md +0 -998
- package/Codex/Skills/EN/skills/helloagents/analyze/SKILL.md +0 -187
- package/Codex/Skills/EN/skills/helloagents/design/SKILL.md +0 -261
- package/Codex/Skills/EN/skills/helloagents/develop/SKILL.md +0 -352
- package/Codex/Skills/EN/skills/helloagents/kb/SKILL.md +0 -249
- package/Codex/Skills/EN/skills/helloagents/templates/SKILL.md +0 -451
- package/bin/cli.js +0 -85
- package/lib/args.js +0 -106
- package/lib/backup.js +0 -81
- package/lib/conflict.js +0 -118
- package/lib/copy.js +0 -125
- package/lib/defaults.js +0 -47
- package/lib/index.js +0 -297
- package/lib/output.js +0 -220
- package/lib/prompts.js +0 -173
- package/lib/utils.js +0 -225
package/LICENSE.md
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# License & Attribution
|
|
2
|
+
|
|
3
|
+
**Commercial use allowed, attribution required.**
|
|
4
|
+
|
|
5
|
+
## Dual License
|
|
6
|
+
|
|
7
|
+
This project uses a dual-license scheme to ensure "commercial use allowed + attribution required":
|
|
8
|
+
|
|
9
|
+
### 1. Code — Apache License 2.0
|
|
10
|
+
|
|
11
|
+
© 2025 [Hellowind](https://github.com/hellowind777/helloagents)
|
|
12
|
+
|
|
13
|
+
Commercial use is allowed. You must retain **LICENSE** and **NOTICE** information in your distribution.
|
|
14
|
+
|
|
15
|
+
Include a `NOTICE` in your distribution:
|
|
16
|
+
|
|
17
|
+
```
|
|
18
|
+
This product includes "HelloAGENTS" (author: Hellowind, https://github.com/hellowind777/helloagents), licensed under the Apache License 2.0.
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
### 2. Documentation — CC BY 4.0
|
|
22
|
+
|
|
23
|
+
© 2025 [Hellowind](https://github.com/hellowind777/helloagents)
|
|
24
|
+
|
|
25
|
+
Commercial use is allowed, but **attribution is required**. Provide a license link and indicate whether changes were made.
|
|
26
|
+
|
|
27
|
+
Suggested attribution when reusing documentation:
|
|
28
|
+
|
|
29
|
+
```
|
|
30
|
+
Text/graphics adapted from "HelloAGENTS" — © 2025 Hellowind (https://github.com/hellowind777/helloagents), CC BY 4.0.
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Unified Attribution
|
|
34
|
+
|
|
35
|
+
For both code and documentation:
|
|
36
|
+
|
|
37
|
+
```
|
|
38
|
+
HelloAGENTS — © 2025 Hellowind (https://github.com/hellowind777/helloagents). Code: Apache-2.0; Docs: CC BY 4.0.
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
43
|
+
## Full License Text
|
|
44
|
+
|
|
45
|
+
### Apache License 2.0
|
|
46
|
+
|
|
47
|
+
See: https://www.apache.org/licenses/LICENSE-2.0
|
|
48
|
+
|
|
49
|
+
### CC BY 4.0
|
|
50
|
+
|
|
51
|
+
See: https://creativecommons.org/licenses/by/4.0/
|