heraspec 0.1.9 → 0.1.10
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/README.md
CHANGED
|
@@ -30,6 +30,14 @@ HeraSpec is a specification-based development framework that helps you:
|
|
|
30
30
|
- Work across multiple project types (WordPress, Laravel, React, etc.)
|
|
31
31
|
- Integrate with AI tools for better development workflow
|
|
32
32
|
|
|
33
|
+
## Important Note
|
|
34
|
+
|
|
35
|
+
> **Note:** HeraSpec is a workflow that I have synthesized, tested, and am currently applying to my work. I constantly refine it to fit small and medium projects, especially for solo freelancers working alone: coding on demand, selling plugins, modules, themes, and software on platforms like Envato.
|
|
36
|
+
>
|
|
37
|
+
> Therefore, there may be many components and structures that are not strictly standardized or suitable for large and complex processes. In such cases, please skip or adjust them accordingly—ask your AI Agents to tailor it to your needs!
|
|
38
|
+
>
|
|
39
|
+
> **If you have any suggestions for new skills to supplement HeraSpec, please let me know!** Good luck with love!
|
|
40
|
+
|
|
33
41
|
## Installation
|
|
34
42
|
|
|
35
43
|
```bash
|
|
@@ -80,12 +88,33 @@ Integrate with AI tools for better development workflow: Cursor, Antigravity, Wi
|
|
|
80
88
|
|
|
81
89
|
Here are some products built partially or entirely using the HeraSpec framework:
|
|
82
90
|
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
91
|
+
<ul>
|
|
92
|
+
<li><a href="https://codecanyon.net/item/flexinote-for-perfex-crm/60590690" target="_blank">FlexNote for Perfex CRM</a> - Advanced note management with AI capabilities.</li>
|
|
93
|
+
<li><a href="https://codecanyon.net/item/polyutilities-for-perfex-crm-quick-access-menu-custom-js-css-and-more/49522529" target="_blank">PolyUtilities for Perfex CRM</a> - Essential toolkit for Perfex CRM customization.</li>
|
|
94
|
+
<li><a href="https://erp.polyxgo.com/code/project/demo-builder-for-perfex-crm" target="_blank">Demo Builder for Perfex CRM</a> - Automated demo instance creator.</li>
|
|
95
|
+
<li><a href="https://erp.polyxgo.com/code/project/polymetrics" target="_blank">PolyMetrics</a> - Product price analysis extension for Envato.</li>
|
|
96
|
+
<li><a href="https://erp.polyxgo.com/code/project/polydemo" target="_blank">PolyDemo</a> - Dynamic demonstration environment for web applications.</li>
|
|
97
|
+
<li><a href="https://erp.polyxgo.com/code/project/smart-payment-for-perfex-crm" target="_blank">Smart Payment for Perfex CRM</a> - Intelligent payment gateway integration.</li>
|
|
98
|
+
</ul>
|
|
99
|
+
|
|
100
|
+
### Plugin WordPress cho Phong Thủy Huyền Học
|
|
101
|
+
|
|
102
|
+
<ul>
|
|
103
|
+
<li><a href="https://erp.polyxgo.com/code/project/pxg-geofesh" target="_blank">Xem Ngày Tốt Xấu</a></li>
|
|
104
|
+
<li><a href="https://erp.polyxgo.com/code/project/pxg-geofesh" target="_blank">Xem và Lập Lá Số Tứ Trụ - Bát Tự</a></li>
|
|
105
|
+
<li><a href="https://erp.polyxgo.com/code/project/pxg-sow-hexagram" target="_blank">Giao Quẻ Kinh Dịch - Lục Hào - Mai Hoa Tiên Thiên</a></li>
|
|
106
|
+
<li><a href="https://erp.polyxgo.com/code/project/pxg-geo-compass" target="_blank">Thước Lập Cực</a></li>
|
|
107
|
+
<li><a href="https://erp.polyxgo.com/code/project/pxg-palm-reading" target="_blank">Xem Chỉ Tay</a></li>
|
|
108
|
+
<li><a href="https://erp.polyxgo.com/code/project/pxg-face-reading" target="_blank">Diện Tướng</a></li>
|
|
109
|
+
</ul>
|
|
110
|
+
|
|
111
|
+
### Plugin WordPress khác
|
|
112
|
+
|
|
113
|
+
<ul>
|
|
114
|
+
<li><a href="https://wordpress.org/plugins/white-label-builder/" target="_blank">White Label Builder</a></li>
|
|
115
|
+
<li><a href="https://wordpress.org/plugins/poly-support/" target="_blank">Poly Support</a></li>
|
|
116
|
+
<li><a href="https://wordpress.org/plugins/team-manager-unified/" target="_blank">Team Manager Unified</a></li>
|
|
117
|
+
</ul>
|
|
89
118
|
|
|
90
119
|
## License
|
|
91
120
|
|
package/bin/heraspec.js
CHANGED
|
@@ -2391,6 +2391,14 @@ function getSkillTemplateInfo(skillName, projectType) {
|
|
|
2391
2391
|
if (SKILL_TEMPLATE_MAP[skillName]) {
|
|
2392
2392
|
return SKILL_TEMPLATE_MAP[skillName];
|
|
2393
2393
|
}
|
|
2394
|
+
if (!projectType) {
|
|
2395
|
+
for (const key of Object.keys(SKILL_TEMPLATE_MAP)) {
|
|
2396
|
+
const parts = key.split(":");
|
|
2397
|
+
if (parts.length === 2 && parts[1] === skillName) {
|
|
2398
|
+
return SKILL_TEMPLATE_MAP[key];
|
|
2399
|
+
}
|
|
2400
|
+
}
|
|
2401
|
+
}
|
|
2394
2402
|
return null;
|
|
2395
2403
|
}
|
|
2396
2404
|
function getAllSkillTemplates() {
|