liang-opencode-suite 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.
Files changed (94) hide show
  1. package/PROMPT.md +368 -0
  2. package/README.md +106 -0
  3. package/dist/cli.d.ts +6 -0
  4. package/dist/cli.d.ts.map +1 -0
  5. package/dist/cli.js +82 -0
  6. package/dist/cli.js.map +1 -0
  7. package/dist/steps/check-opencode.d.ts +10 -0
  8. package/dist/steps/check-opencode.d.ts.map +1 -0
  9. package/dist/steps/check-opencode.js +52 -0
  10. package/dist/steps/check-opencode.js.map +1 -0
  11. package/dist/steps/configure-api-keys.d.ts +12 -0
  12. package/dist/steps/configure-api-keys.d.ts.map +1 -0
  13. package/dist/steps/configure-api-keys.js +45 -0
  14. package/dist/steps/configure-api-keys.js.map +1 -0
  15. package/dist/steps/install-agents.d.ts +6 -0
  16. package/dist/steps/install-agents.d.ts.map +1 -0
  17. package/dist/steps/install-agents.js +56 -0
  18. package/dist/steps/install-agents.js.map +1 -0
  19. package/dist/steps/install-commands.d.ts +6 -0
  20. package/dist/steps/install-commands.d.ts.map +1 -0
  21. package/dist/steps/install-commands.js +48 -0
  22. package/dist/steps/install-commands.js.map +1 -0
  23. package/dist/steps/install-skills.d.ts +7 -0
  24. package/dist/steps/install-skills.d.ts.map +1 -0
  25. package/dist/steps/install-skills.js +104 -0
  26. package/dist/steps/install-skills.js.map +1 -0
  27. package/dist/steps/install-superpowers.d.ts +7 -0
  28. package/dist/steps/install-superpowers.d.ts.map +1 -0
  29. package/dist/steps/install-superpowers.js +74 -0
  30. package/dist/steps/install-superpowers.js.map +1 -0
  31. package/dist/steps/select-providers.d.ts +11 -0
  32. package/dist/steps/select-providers.d.ts.map +1 -0
  33. package/dist/steps/select-providers.js +47 -0
  34. package/dist/steps/select-providers.js.map +1 -0
  35. package/dist/steps/setup-minimax-mcp.d.ts +8 -0
  36. package/dist/steps/setup-minimax-mcp.d.ts.map +1 -0
  37. package/dist/steps/setup-minimax-mcp.js +162 -0
  38. package/dist/steps/setup-minimax-mcp.js.map +1 -0
  39. package/dist/steps/verify-installation.d.ts +11 -0
  40. package/dist/steps/verify-installation.d.ts.map +1 -0
  41. package/dist/steps/verify-installation.js +108 -0
  42. package/dist/steps/verify-installation.js.map +1 -0
  43. package/dist/types.d.ts +64 -0
  44. package/dist/types.d.ts.map +1 -0
  45. package/dist/types.js +5 -0
  46. package/dist/types.js.map +1 -0
  47. package/dist/utils/file-writer.d.ts +9 -0
  48. package/dist/utils/file-writer.d.ts.map +1 -0
  49. package/dist/utils/file-writer.js +58 -0
  50. package/dist/utils/file-writer.js.map +1 -0
  51. package/dist/utils/git-clone.d.ts +7 -0
  52. package/dist/utils/git-clone.d.ts.map +1 -0
  53. package/dist/utils/git-clone.js +44 -0
  54. package/dist/utils/git-clone.js.map +1 -0
  55. package/dist/utils/index.d.ts +7 -0
  56. package/dist/utils/index.d.ts.map +1 -0
  57. package/dist/utils/index.js +7 -0
  58. package/dist/utils/index.js.map +1 -0
  59. package/dist/utils/logger.d.ts +8 -0
  60. package/dist/utils/logger.d.ts.map +1 -0
  61. package/dist/utils/logger.js +23 -0
  62. package/dist/utils/logger.js.map +1 -0
  63. package/dist/utils/os-utils.d.ts +20 -0
  64. package/dist/utils/os-utils.d.ts.map +1 -0
  65. package/dist/utils/os-utils.js +127 -0
  66. package/dist/utils/os-utils.js.map +1 -0
  67. package/dist/utils/paths.d.ts +14 -0
  68. package/dist/utils/paths.d.ts.map +1 -0
  69. package/dist/utils/paths.js +38 -0
  70. package/dist/utils/paths.js.map +1 -0
  71. package/dist/utils/validators.d.ts +23 -0
  72. package/dist/utils/validators.d.ts.map +1 -0
  73. package/dist/utils/validators.js +63 -0
  74. package/dist/utils/validators.js.map +1 -0
  75. package/dist/wizard.d.ts +10 -0
  76. package/dist/wizard.d.ts.map +1 -0
  77. package/dist/wizard.js +347 -0
  78. package/dist/wizard.js.map +1 -0
  79. package/package.json +62 -0
  80. package/templates/AGENTS.md +199 -0
  81. package/templates/commands/commit.md +6 -0
  82. package/templates/commands/component.md +9 -0
  83. package/templates/commands/explain.md +7 -0
  84. package/templates/commands/review.md +7 -0
  85. package/templates/commands/test.md +8 -0
  86. package/templates/commands/vibe-select.md +147 -0
  87. package/templates/oh-my-openagent.json +129 -0
  88. package/templates/opencode.template.json +39 -0
  89. package/templates/skills/agent-browser/SKILL.md +25 -0
  90. package/templates/skills/find-skills/SKILL.md +22 -0
  91. package/templates/skills/frontend-design/SKILL.md +18 -0
  92. package/templates/skills/skill-creator/SKILL.md +18 -0
  93. package/templates/skills/superpowers/SKILL.md +45 -0
  94. package/templates/skills/vibe-stack-guardian/SKILL.md +22 -0
@@ -0,0 +1,22 @@
1
+ # Find Skills Skill
2
+
3
+ Helps users discover and install agent skills.
4
+
5
+ ## Description
6
+
7
+ Use when the user asks questions like:
8
+ - "how do I do X"
9
+ - "find a skill for X"
10
+ - "is there a skill that can..."
11
+ - Or expresses interest in extending capabilities
12
+
13
+ This skill should be used when the user is looking for functionality that might exist as an installable skill.
14
+
15
+ ## Reference
16
+
17
+ Full skill content:
18
+ https://github.com/liangjs/liang-opencode-suite/blob/main/skills/find-skills/SKILL.md
19
+
20
+ ## Installation
21
+
22
+ This skill is included in the liang-opencode-suite installation.
@@ -0,0 +1,18 @@
1
+ # Frontend Design Skill
2
+
3
+ Create distinctive, production-grade frontend interfaces with high design quality.
4
+
5
+ ## Description
6
+
7
+ Use this skill when the user asks to build web components, pages, artifacts, posters, or applications (examples include websites, landing pages, dashboards, React components, HTML/CSS layouts, or when styling/beautifying any web UI).
8
+
9
+ Generates creative, polished code and UI design that avoids generic AI aesthetics.
10
+
11
+ ## Reference
12
+
13
+ Full skill content:
14
+ https://github.com/liangjs/liang-opencode-suite/blob/main/skills/frontend-design/SKILL.md
15
+
16
+ ## Installation
17
+
18
+ This skill is included in the liang-opencode-suite installation.
@@ -0,0 +1,18 @@
1
+ # Skill Creator Skill
2
+
3
+ Guide for creating effective skills.
4
+
5
+ ## Description
6
+
7
+ Helps users create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
8
+
9
+ Use when you want to create a new skill or modify an existing one.
10
+
11
+ ## Reference
12
+
13
+ Full skill content:
14
+ https://github.com/liangjs/liang-opencode-suite/blob/main/skills/skill-creator/SKILL.md
15
+
16
+ ## Installation
17
+
18
+ This skill is included in the liang-opencode-suite installation.
@@ -0,0 +1,45 @@
1
+ # Superpowers Skills (Git Submodule)
2
+
3
+ This directory is managed as a Git submodule.
4
+
5
+ ## Reference
6
+
7
+ Full content available at:
8
+ https://github.com/liangjs/liang-opencode-suite/tree/main/skills/superpowers
9
+
10
+ ## Structure
11
+
12
+ ```
13
+ superpowers/
14
+ ├── brainstorming/
15
+ ├── debugging/
16
+ ├── dispatching-parallel-agents/
17
+ ├── executing-plans/
18
+ ├── finishing-a-development-branch/
19
+ ├── receiving-code-review/
20
+ ├── requesting-code-review/
21
+ ├── subagent-driven-development/
22
+ ├── systematic-debugging/
23
+ ├── test-driven-development/
24
+ ├── using-git-worktrees/
25
+ ├── using-superpowers/
26
+ ├── verification-before-completion/
27
+ ├── vibe-stack-guardian/
28
+ ├── writing-plans/
29
+ └── writing-skills/
30
+ ```
31
+
32
+ ## Installation
33
+
34
+ When this suite is installed, run:
35
+
36
+ ```bash
37
+ git submodule update --init --recursive
38
+ ```
39
+
40
+ Or add to your `.gitconfig`:
41
+
42
+ ```ini
43
+ [submodule]
44
+ update = clone + recursive
45
+ ```
@@ -0,0 +1,22 @@
1
+ # Vibe Stack Guardian Skill
2
+
3
+ Use when initializing a new project, introducing new dependencies, or making architecture decisions that require Vibe Coding compliance verification.
4
+
5
+ ## Description
6
+
7
+ Enforces the Vibe Coding Constitution - a set of three iron rules:
8
+
9
+ 1. **Container First**: Local no environment, everything defined in docker-compose.yml
10
+ 2. **Schema Driven**: No untyped dicts, databases require ORM, APIs require Pydantic validation
11
+ 3. **Explicit Observability**: Structured logging (Loguru), clear error tracing
12
+
13
+ Plus the Tech Stack Whitelist and Extension Policy (7 Principles for evaluating new libraries).
14
+
15
+ ## Reference
16
+
17
+ Full skill content:
18
+ https://github.com/liangjs/liang-opencode-suite/blob/main/skills/vibe-stack-guardian/SKILL.md
19
+
20
+ ## Installation
21
+
22
+ This skill is included in the liang-opencode-suite installation.