@chanaka_nakandala/integration-personas 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.
- package/LICENSE +21 -0
- package/README.md +114 -0
- package/ba-agent.yaml +682 -0
- package/developer-agent.yaml +585 -0
- package/package.json +38 -0
package/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2025 Grubtech
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
@@ -0,0 +1,114 @@
|
|
1
|
+
# Grubtech Agent Personas
|
2
|
+
|
3
|
+
**Claude Code agent personas for Grubtech API integrations**
|
4
|
+
|
5
|
+
This package contains YAML configuration files that customize Claude's behavior for Grubtech API integration tasks.
|
6
|
+
|
7
|
+
## What's Included
|
8
|
+
|
9
|
+
### 1. Developer Agent (`developer-agent.yaml`)
|
10
|
+
**Technical, code-first responses**
|
11
|
+
|
12
|
+
- Generates production-ready code in TypeScript, Python, Java, or cURL
|
13
|
+
- Provides API specifications and technical details
|
14
|
+
- Helps debug API errors with specific solutions
|
15
|
+
- Follows language best practices, SOLID principles, and design patterns
|
16
|
+
|
17
|
+
**When to use:** You're ready to write integration code
|
18
|
+
|
19
|
+
### 2. BA Agent (`ba-agent.yaml`)
|
20
|
+
**Planning, requirements, documentation**
|
21
|
+
|
22
|
+
- Conducts comprehensive requirement elicitation
|
23
|
+
- Asks discovery questions (integration type, tech stack, hosting, team)
|
24
|
+
- Generates complete project requirement documents with Mermaid diagrams
|
25
|
+
- Provides process guidance and go-live checklists
|
26
|
+
|
27
|
+
**When to use:** You're starting a new integration project
|
28
|
+
|
29
|
+
## Installation
|
30
|
+
|
31
|
+
**You don't need to install this package directly!**
|
32
|
+
|
33
|
+
This package is automatically installed when you run:
|
34
|
+
|
35
|
+
```bash
|
36
|
+
npx @chanaka_nakandala/integration-agent init
|
37
|
+
```
|
38
|
+
|
39
|
+
The installer will:
|
40
|
+
1. Download these YAML files
|
41
|
+
2. Copy them to `~/.claude/agents/`
|
42
|
+
3. Make them available in Claude Code's persona menu
|
43
|
+
|
44
|
+
## Manual Installation
|
45
|
+
|
46
|
+
If you want to install manually:
|
47
|
+
|
48
|
+
1. Download this package:
|
49
|
+
```bash
|
50
|
+
npm install @chanaka_nakandala/agent-personas
|
51
|
+
```
|
52
|
+
|
53
|
+
2. Copy YAML files to Claude's agents directory:
|
54
|
+
```bash
|
55
|
+
# Linux/macOS
|
56
|
+
cp node_modules/@chanaka_nakandala/agent-personas/*.yaml ~/.claude/agents/
|
57
|
+
|
58
|
+
# Windows
|
59
|
+
copy node_modules\@chanaka_nakandala\agent-personas\*.yaml %USERPROFILE%\.claude\agents\
|
60
|
+
```
|
61
|
+
|
62
|
+
3. Restart Claude Code
|
63
|
+
|
64
|
+
4. Select persona from the personas menu
|
65
|
+
|
66
|
+
## Usage
|
67
|
+
|
68
|
+
After installation, select an agent persona in Claude Code:
|
69
|
+
|
70
|
+
### Start with BA Agent
|
71
|
+
```
|
72
|
+
"Help me plan my restaurant POS integration with Grubtech"
|
73
|
+
```
|
74
|
+
|
75
|
+
The BA Agent will:
|
76
|
+
- Ask discovery questions about your system
|
77
|
+
- Create a requirements document
|
78
|
+
- Provide architecture diagrams
|
79
|
+
- Hand off to Developer Agent
|
80
|
+
|
81
|
+
### Then use Developer Agent
|
82
|
+
```
|
83
|
+
"I have the requirements document. Generate TypeScript authentication code"
|
84
|
+
```
|
85
|
+
|
86
|
+
The Developer Agent will:
|
87
|
+
- Generate production-ready code
|
88
|
+
- Include error handling and logging
|
89
|
+
- Follow best practices
|
90
|
+
- Provide implementation guidance
|
91
|
+
|
92
|
+
## Files
|
93
|
+
|
94
|
+
- `developer-agent.yaml` - Developer Agent configuration (20.8 kB)
|
95
|
+
- `ba-agent.yaml` - BA Agent configuration (23.4 kB)
|
96
|
+
|
97
|
+
## Part of Grubtech Integration Agent
|
98
|
+
|
99
|
+
This package is part of the Grubtech Integration Agent toolkit:
|
100
|
+
|
101
|
+
- **@chanaka_nakandala/integration-agent** - Installer (use this!)
|
102
|
+
- **@chanaka_nakandala/mcp-server** - MCP server
|
103
|
+
- **@chanaka_nakandala/agent-personas** - Agent personas (this package)
|
104
|
+
- **@chanaka_nakandala/agent-core** - Shared types
|
105
|
+
|
106
|
+
## Links
|
107
|
+
|
108
|
+
- **Grubtech Website:** https://www.grubtech.com
|
109
|
+
- **API Documentation:** https://docs.grubtech.io
|
110
|
+
- **Support:** support@grubtech.io
|
111
|
+
|
112
|
+
## License
|
113
|
+
|
114
|
+
MIT © Grubtech
|