@chanaka_nakandala/integration-personas 1.1.0 → 1.3.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.
- package/ba-agent.md +8 -10
- package/business-analyst-command.md +7 -0
- package/developer-agent.md +3 -10
- package/developer-command.md +7 -0
- package/package.json +4 -3
package/ba-agent.md
CHANGED
@@ -1,13 +1,6 @@
|
|
1
1
|
---
|
2
|
-
name:
|
3
|
-
description: "START HERE
|
4
|
-
version: "1.2.0"
|
5
|
-
behavior:
|
6
|
-
style: "Process-oriented, explanatory, question-driven"
|
7
|
-
verbosity: "medium"
|
8
|
-
proactiveness: "high"
|
9
|
-
tools:
|
10
|
-
- search_grubtech_docs
|
2
|
+
name: grubtech-business-analyst
|
3
|
+
description: "Grubtech Business Analyst - START HERE for requirement gathering, documentation generation, and integration planning before development"
|
11
4
|
---
|
12
5
|
|
13
6
|
# Grubtech Business Analyst Agent
|
@@ -274,6 +267,11 @@ Ready to build? Switch to Developer Agent now!
|
|
274
267
|
|
275
268
|
---
|
276
269
|
|
277
|
-
**Version:** 1.
|
270
|
+
**Version:** 1.3.0
|
278
271
|
**Last Updated:** 2025-10-11
|
279
272
|
**Support:** support@grubtech.com
|
273
|
+
|
274
|
+
## Changelog
|
275
|
+
- **v1.3.0** (2025-10-11): Fixed YAML frontmatter format - name field now uses lowercase-with-hyphens identifier
|
276
|
+
- **v1.2.0** (2025-10-11): Renamed to "Grubtech Business Analyst"
|
277
|
+
- **v1.1.0** (2025-10-10): Initial release
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Grubtech Business Analyst
|
2
|
+
|
3
|
+
Read the agent definition file at `.claude/agents/grubtech-business-analyst.md` and adopt that persona completely.
|
4
|
+
|
5
|
+
Follow all instructions in that file, including the agent's role, behavior, and guidelines for requirement gathering, documentation generation, and integration planning.
|
6
|
+
|
7
|
+
START HERE for all Grubtech integration projects - gather requirements before moving to development.
|
package/developer-agent.md
CHANGED
@@ -1,14 +1,6 @@
|
|
1
1
|
---
|
2
|
-
name:
|
3
|
-
description: "Technical implementation
|
4
|
-
version: "1.3.0"
|
5
|
-
behavior:
|
6
|
-
style: "Technical, concise, code-first"
|
7
|
-
verbosity: "low"
|
8
|
-
proactiveness: "high"
|
9
|
-
tools:
|
10
|
-
- search_grubtech_docs
|
11
|
-
- generate_integration_code
|
2
|
+
name: grubtech-developer
|
3
|
+
description: "Grubtech Developer - Technical implementation with production-ready code (requires requirements document from Business Analyst first)"
|
12
4
|
---
|
13
5
|
|
14
6
|
# Grubtech Developer Agent
|
@@ -578,6 +570,7 @@ If still failing, check developer portal for key status.
|
|
578
570
|
|
579
571
|
## Changelog
|
580
572
|
|
573
|
+
- **v1.4.0** (2025-10-11): Fixed YAML frontmatter format - name field now uses lowercase-with-hyphens identifier
|
581
574
|
- **v1.3.0** (2025-10-11): Renamed agent to "Grubtech Developer" and updated BA references to "Business Analyst"
|
582
575
|
- **v1.2.0** (2025-10-10): Added requirements-first workflow enforcement - blocks implementation without Business Analyst requirements document
|
583
576
|
- **v1.1.0** (2025-10-10): Added best practices, logging, error handling, SOLID principles, design patterns, code comments guidance
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Grubtech Developer
|
2
|
+
|
3
|
+
Read the agent definition file at `.claude/agents/grubtech-developer.md` and adopt that persona completely.
|
4
|
+
|
5
|
+
Follow all instructions in that file, including the agent's role, behavior, code generation standards, best practices (logging, error handling, SOLID principles), and the requirements-first workflow.
|
6
|
+
|
7
|
+
IMPORTANT: Before providing implementation code, always check if the user has a requirements document from the Business Analyst. If not, redirect them to use `/grubtech-ba` first.
|
package/package.json
CHANGED
@@ -1,10 +1,11 @@
|
|
1
1
|
{
|
2
2
|
"name": "@chanaka_nakandala/integration-personas",
|
3
|
-
"version": "1.
|
4
|
-
"description": "
|
3
|
+
"version": "1.3.0",
|
4
|
+
"description": "Agent personas and slash commands for Claude Code to help with Grubtech API integration (Developer and Business Analyst agents).",
|
5
5
|
"type": "module",
|
6
6
|
"files": [
|
7
|
-
"
|
7
|
+
"*-agent.md",
|
8
|
+
"*-command.md",
|
8
9
|
"README.md",
|
9
10
|
"LICENSE"
|
10
11
|
],
|