helloagents 2.3.7 → 3.0.1-beta.1

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.
Files changed (90) hide show
  1. package/.claude-plugin/marketplace.json +20 -0
  2. package/.claude-plugin/plugin.json +21 -0
  3. package/.codex-plugin/plugin.json +46 -0
  4. package/README.md +494 -625
  5. package/README_CN.md +770 -0
  6. package/assets/dogdoing/complete.wav +0 -0
  7. package/assets/dogdoing/confirm.wav +0 -0
  8. package/assets/dogdoing/error.wav +0 -0
  9. package/assets/dogdoing/idle.wav +0 -0
  10. package/assets/dogdoing/warning.wav +0 -0
  11. package/assets/icons/icon-large.png +0 -0
  12. package/assets/icons/icon.png +0 -0
  13. package/assets/sounds/complete.wav +0 -0
  14. package/assets/sounds/confirm.wav +0 -0
  15. package/assets/sounds/error.wav +0 -0
  16. package/assets/sounds/idle.wav +0 -0
  17. package/assets/sounds/warning.wav +0 -0
  18. package/bootstrap-lite.md +199 -0
  19. package/bootstrap.md +296 -0
  20. package/cli.mjs +453 -0
  21. package/gemini-extension.json +8 -0
  22. package/hooks/hooks-claude.json +88 -0
  23. package/hooks/hooks.json +76 -0
  24. package/package.json +36 -6
  25. package/scripts/cli-codex.mjs +445 -0
  26. package/scripts/cli-config.mjs +37 -0
  27. package/scripts/cli-hosts.mjs +75 -0
  28. package/scripts/cli-messages.mjs +92 -0
  29. package/scripts/cli-toml.mjs +251 -0
  30. package/scripts/cli-utils.mjs +139 -0
  31. package/scripts/guard.mjs +217 -0
  32. package/scripts/notify-context.mjs +123 -0
  33. package/scripts/notify-events.mjs +11 -0
  34. package/scripts/notify-shared.mjs +47 -0
  35. package/scripts/notify-ui.mjs +92 -0
  36. package/scripts/notify.mjs +219 -0
  37. package/scripts/ralph-loop.mjs +246 -0
  38. package/skills/_meta/SKILL.md +19 -0
  39. package/skills/commands/auto/SKILL.md +91 -0
  40. package/skills/commands/clean/SKILL.md +21 -0
  41. package/skills/commands/commit/SKILL.md +26 -0
  42. package/skills/commands/design/SKILL.md +108 -0
  43. package/skills/commands/help/SKILL.md +45 -0
  44. package/skills/commands/init/SKILL.md +60 -0
  45. package/skills/commands/loop/SKILL.md +98 -0
  46. package/skills/commands/prd/SKILL.md +151 -0
  47. package/skills/commands/review/SKILL.md +16 -0
  48. package/skills/commands/test/SKILL.md +16 -0
  49. package/skills/commands/verify/SKILL.md +21 -0
  50. package/skills/hello-api/SKILL.md +40 -0
  51. package/skills/hello-arch/SKILL.md +38 -0
  52. package/skills/hello-data/SKILL.md +39 -0
  53. package/skills/hello-debug/SKILL.md +58 -0
  54. package/skills/hello-errors/SKILL.md +39 -0
  55. package/skills/hello-perf/SKILL.md +40 -0
  56. package/skills/hello-reflect/SKILL.md +34 -0
  57. package/skills/hello-review/SKILL.md +33 -0
  58. package/skills/hello-security/SKILL.md +40 -0
  59. package/skills/hello-subagent/SKILL.md +32 -0
  60. package/skills/hello-test/SKILL.md +55 -0
  61. package/skills/hello-ui/SKILL.md +197 -0
  62. package/skills/hello-verify/SKILL.md +132 -0
  63. package/skills/hello-write/SKILL.md +33 -0
  64. package/skills/helloagents/SKILL.md +107 -0
  65. package/templates/CHANGELOG.md +5 -0
  66. package/templates/DESIGN.md +19 -0
  67. package/templates/STATE.md +19 -0
  68. package/templates/archive/_index.md +4 -0
  69. package/templates/context.md +19 -0
  70. package/templates/guidelines.md +15 -0
  71. package/templates/modules/module.md +13 -0
  72. package/templates/plans/decisions.md +10 -0
  73. package/templates/plans/design.md +14 -0
  74. package/templates/plans/prd/00-overview.md +23 -0
  75. package/templates/plans/prd/01-user-stories.md +19 -0
  76. package/templates/plans/prd/02-functional.md +30 -0
  77. package/templates/plans/prd/03-ui-design.md +31 -0
  78. package/templates/plans/prd/04-technical.md +25 -0
  79. package/templates/plans/prd/05-nonfunctional.md +28 -0
  80. package/templates/plans/prd/06-i18n-l10n.md +23 -0
  81. package/templates/plans/prd/07-accessibility.md +20 -0
  82. package/templates/plans/prd/08-content.md +20 -0
  83. package/templates/plans/prd/09-testing.md +22 -0
  84. package/templates/plans/prd/10-deployment.md +23 -0
  85. package/templates/plans/prd/11-legal-privacy.md +18 -0
  86. package/templates/plans/prd/12-timeline.md +21 -0
  87. package/templates/plans/requirements.md +18 -0
  88. package/templates/plans/tasks.md +10 -0
  89. package/templates/verify.yaml +9 -0
  90. package/bin/cli.mjs +0 -106
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "helloagents-dev",
3
+ "description": "Development marketplace for HelloAGENTS quality-driven orchestration kernel",
4
+ "owner": {
5
+ "name": "HelloWind",
6
+ "email": "hellowind777@gmail.com"
7
+ },
8
+ "plugins": [
9
+ {
10
+ "name": "helloagents",
11
+ "description": "Quality-driven orchestration kernel for AI CLIs: intelligent routing, quality verification, safety guards, and notifications",
12
+ "version": "3.0.1-beta.1",
13
+ "source": "./",
14
+ "author": {
15
+ "name": "HelloWind",
16
+ "email": "hellowind777@gmail.com"
17
+ }
18
+ }
19
+ ]
20
+ }
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "helloagents",
3
+ "version": "3.0.1-beta.1",
4
+ "description": "HelloAGENTS — The orchestration kernel that makes any AI CLI smarter. Adds intelligent routing, quality verification (Ralph Loop), safety guards, and notifications.",
5
+ "author": "HelloWind",
6
+ "license": "Apache-2.0",
7
+ "keywords": [
8
+ "orchestration",
9
+ "subagent",
10
+ "routing",
11
+ "quality",
12
+ "notification",
13
+ "safety"
14
+ ],
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "https://github.com/hellowind777/helloagents.git"
18
+ },
19
+ "skills": "./skills",
20
+ "hooks": "./hooks/hooks-claude.json"
21
+ }
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "helloagents",
3
+ "version": "3.0.1-beta.1",
4
+ "description": "HelloAGENTS — Quality-driven orchestration kernel for AI CLIs with intelligent routing, quality verification (Ralph Loop), safety guards, and notifications.",
5
+ "author": {
6
+ "name": "HelloWind",
7
+ "email": "hellowind777@gmail.com"
8
+ },
9
+ "license": "Apache-2.0",
10
+ "keywords": [
11
+ "orchestration",
12
+ "subagent",
13
+ "routing",
14
+ "quality",
15
+ "verification",
16
+ "safety",
17
+ "guard",
18
+ "notification",
19
+ "skill",
20
+ "agent"
21
+ ],
22
+ "homepage": "https://github.com/hellowind777/helloagents",
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "https://github.com/hellowind777/helloagents.git"
26
+ },
27
+ "skills": "./skills",
28
+ "interface": {
29
+ "displayName": "HelloAGENTS",
30
+ "shortDescription": "Quality-driven orchestration kernel for AI CLIs",
31
+ "longDescription": "HelloAGENTS is a quality-driven orchestration kernel that enhances AI coding CLIs with intelligent routing, quality verification (Ralph Loop), safety guards, and notifications. It provides a comprehensive skill system for ensuring code quality and development best practices.",
32
+ "developerName": "HelloWind",
33
+ "category": "Developer Tools",
34
+ "capabilities": [
35
+ "Write",
36
+ "Interactive"
37
+ ],
38
+ "websiteURL": "https://github.com/hellowind777/helloagents",
39
+ "defaultPrompt": [
40
+ "Help me set up quality verification for my project",
41
+ "Review my code for potential issues",
42
+ "Guide me through the design workflow for a new feature",
43
+ "Initialize HelloAGENTS configuration for this project"
44
+ ]
45
+ }
46
+ }