siesa-agents 2.1.35 → 2.1.36
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/bin/install.js +1 -0
- package/gemini/commands/BMad/agents/analyst.toml +6 -0
- package/gemini/commands/BMad/agents/architect.toml +6 -0
- package/gemini/commands/BMad/agents/bmad-master.toml +6 -0
- package/gemini/commands/BMad/agents/bmad-orchestrator.toml +6 -0
- package/gemini/commands/BMad/agents/dev.toml +6 -0
- package/gemini/commands/BMad/agents/pm.toml +6 -0
- package/gemini/commands/BMad/agents/po.toml +6 -0
- package/gemini/commands/BMad/agents/qa.toml +6 -0
- package/gemini/commands/BMad/agents/sm.toml +6 -0
- package/gemini/commands/BMad/agents/ux-expert.toml +6 -0
- package/gemini/commands/BMad/tasks/advanced-elicitation.toml +6 -0
- package/gemini/commands/BMad/tasks/apply-qa-fixes.toml +6 -0
- package/gemini/commands/BMad/tasks/brownfield-create-epic.toml +6 -0
- package/gemini/commands/BMad/tasks/brownfield-create-story.toml +6 -0
- package/gemini/commands/BMad/tasks/correct-course.toml +6 -0
- package/gemini/commands/BMad/tasks/create-brownfield-story.toml +6 -0
- package/gemini/commands/BMad/tasks/create-deep-research-prompt.toml +6 -0
- package/gemini/commands/BMad/tasks/create-doc.toml +6 -0
- package/gemini/commands/BMad/tasks/create-next-story.toml +6 -0
- package/gemini/commands/BMad/tasks/document-project.toml +6 -0
- package/gemini/commands/BMad/tasks/execute-checklist.toml +6 -0
- package/gemini/commands/BMad/tasks/facilitate-brainstorming-session.toml +6 -0
- package/gemini/commands/BMad/tasks/generate-ai-frontend-prompt.toml +6 -0
- package/gemini/commands/BMad/tasks/index-docs.toml +6 -0
- package/gemini/commands/BMad/tasks/kb-mode-interaction.toml +6 -0
- package/gemini/commands/BMad/tasks/nfr-assess.toml +6 -0
- package/gemini/commands/BMad/tasks/qa-gate.toml +6 -0
- package/gemini/commands/BMad/tasks/review-story.toml +6 -0
- package/gemini/commands/BMad/tasks/risk-profile.toml +6 -0
- package/gemini/commands/BMad/tasks/shard-doc.toml +6 -0
- package/gemini/commands/BMad/tasks/test-design.toml +6 -0
- package/gemini/commands/BMad/tasks/trace-requirements.toml +6 -0
- package/gemini/commands/BMad/tasks/validate-next-story.toml +6 -0
- package/package.json +2 -1
package/bin/install.js
CHANGED
|
@@ -13,6 +13,7 @@ class SiesaBmadInstaller {
|
|
|
13
13
|
{ source: 'vscode', target: '.vscode' },
|
|
14
14
|
{ source: 'github', target: '.github' },
|
|
15
15
|
{ source: 'claude', target: '.claude' },
|
|
16
|
+
{ source: 'gemini', target: '.gemini' },
|
|
16
17
|
{ source: 'kiro', target: '.kiro' },
|
|
17
18
|
{ source: 'resources', target: '.resources' },
|
|
18
19
|
{ source: 'mcp.json', target: '.mcp.json' }
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
description = "Activates the Business Analyst agent from the BMad Method."
|
|
2
|
+
prompt = """
|
|
3
|
+
CRITICAL: You are now the BMad 'Business Analyst' agent. Adopt its persona, follow its instructions, and use its capabilities. The full agent definition is below.
|
|
4
|
+
|
|
5
|
+
@{.bmad-core/agents/analyst.md}
|
|
6
|
+
"""
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
description = "Activates the Architect agent from the BMad Method."
|
|
2
|
+
prompt = """
|
|
3
|
+
CRITICAL: You are now the BMad 'Architect' agent. Adopt its persona, follow its instructions, and use its capabilities. The full agent definition is below.
|
|
4
|
+
|
|
5
|
+
@{.bmad-core/agents/architect.md}
|
|
6
|
+
"""
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
description = "Activates the BMad Master Task Executor agent from the BMad Method."
|
|
2
|
+
prompt = """
|
|
3
|
+
CRITICAL: You are now the BMad 'BMad Master Task Executor' agent. Adopt its persona, follow its instructions, and use its capabilities. The full agent definition is below.
|
|
4
|
+
|
|
5
|
+
@{.bmad-core/agents/bmad-master.md}
|
|
6
|
+
"""
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
description = "Activates the BMad Master Orchestrator agent from the BMad Method."
|
|
2
|
+
prompt = """
|
|
3
|
+
CRITICAL: You are now the BMad 'BMad Master Orchestrator' agent. Adopt its persona, follow its instructions, and use its capabilities. The full agent definition is below.
|
|
4
|
+
|
|
5
|
+
@{.bmad-core/agents/bmad-orchestrator.md}
|
|
6
|
+
"""
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
description = "Activates the Full Stack Developer agent from the BMad Method."
|
|
2
|
+
prompt = """
|
|
3
|
+
CRITICAL: You are now the BMad 'Full Stack Developer' agent. Adopt its persona, follow its instructions, and use its capabilities. The full agent definition is below.
|
|
4
|
+
|
|
5
|
+
@{.bmad-core/agents/dev.md}
|
|
6
|
+
"""
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
description = "Activates the Product Manager agent from the BMad Method."
|
|
2
|
+
prompt = """
|
|
3
|
+
CRITICAL: You are now the BMad 'Product Manager' agent. Adopt its persona, follow its instructions, and use its capabilities. The full agent definition is below.
|
|
4
|
+
|
|
5
|
+
@{.bmad-core/agents/pm.md}
|
|
6
|
+
"""
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
description = "Activates the Product Owner agent from the BMad Method."
|
|
2
|
+
prompt = """
|
|
3
|
+
CRITICAL: You are now the BMad 'Product Owner' agent. Adopt its persona, follow its instructions, and use its capabilities. The full agent definition is below.
|
|
4
|
+
|
|
5
|
+
@{.bmad-core/agents/po.md}
|
|
6
|
+
"""
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
description = "Activates the Test Architect & Quality Advisor agent from the BMad Method."
|
|
2
|
+
prompt = """
|
|
3
|
+
CRITICAL: You are now the BMad 'Test Architect & Quality Advisor' agent. Adopt its persona, follow its instructions, and use its capabilities. The full agent definition is below.
|
|
4
|
+
|
|
5
|
+
@{.bmad-core/agents/qa.md}
|
|
6
|
+
"""
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
description = "Activates the Scrum Master agent from the BMad Method."
|
|
2
|
+
prompt = """
|
|
3
|
+
CRITICAL: You are now the BMad 'Scrum Master' agent. Adopt its persona, follow its instructions, and use its capabilities. The full agent definition is below.
|
|
4
|
+
|
|
5
|
+
@{.bmad-core/agents/sm.md}
|
|
6
|
+
"""
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
description = "Activates the UX Expert agent from the BMad Method."
|
|
2
|
+
prompt = """
|
|
3
|
+
CRITICAL: You are now the BMad 'UX Expert' agent. Adopt its persona, follow its instructions, and use its capabilities. The full agent definition is below.
|
|
4
|
+
|
|
5
|
+
@{.bmad-core/agents/ux-expert.md}
|
|
6
|
+
"""
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "siesa-agents",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.36",
|
|
4
4
|
"description": "Paquete para instalar y configurar agentes SIESA en tu proyecto",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
"vscode/**/*",
|
|
25
25
|
"github/**/*",
|
|
26
26
|
"claude/**/*",
|
|
27
|
+
"gemini/**/*",
|
|
27
28
|
"kiro/**/*",
|
|
28
29
|
"bin/**/*",
|
|
29
30
|
"resources/**/*",
|