desktop-team-doc 0.1.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/README.md +89 -0
- package/content/docs/README.md +227 -0
- package/content/docs/index.md +352 -0
- package/content/docs/instructions/coding-conventions/.clang-format +65 -0
- package/content/docs/instructions/coding-conventions/cpp.md +132 -0
- package/content/docs/instructions/coding-conventions/frontend.md +612 -0
- package/content/docs/instructions/coding-conventions/team-wide.md +176 -0
- package/content/docs/instructions/workflows/assets/jira-1.png +0 -0
- package/content/docs/instructions/workflows/assets/jira-comment.png +0 -0
- package/content/docs/instructions/workflows/assets/jira-release-note.png +0 -0
- package/content/docs/instructions/workflows/assets/jira-tag.png +0 -0
- package/content/docs/instructions/workflows/code-review.md +451 -0
- package/content/docs/instructions/workflows/git-branch-convention.md +246 -0
- package/content/docs/instructions/workflows/git-commit.md +95 -0
- package/content/docs/instructions/workflows/jira-process.md +173 -0
- package/content/docs/instructions/workflows/jira-ticket-guide.md +105 -0
- package/content/docs/instructions/workflows/pull-request-generation.md +319 -0
- package/content/docs/instructions/workflows/scrum-process.md +104 -0
- package/content/docs/instructions/workflows/survey-project-setup.md +76 -0
- package/content/docs/knowledge/architecture/README.md +11 -0
- package/content/docs/knowledge/architecture/audio-plugin-architecture.md +213 -0
- package/content/docs/knowledge/architecture/cross-platform-design.md +176 -0
- package/content/docs/knowledge/architecture/frontend-native-bridge.md +193 -0
- package/content/docs/knowledge/architecture/native-command.md +189 -0
- package/content/docs/knowledge/architecture/state-management-architecture.md +105 -0
- package/content/docs/knowledge/component-library/ControlComponent/README.md +281 -0
- package/content/docs/knowledge/component-library/ControlComponent/accessibility/accessibility-implementation.md +503 -0
- package/content/docs/knowledge/component-library/ControlComponent/common-mechanisms.md +278 -0
- package/content/docs/knowledge/component-library/ControlComponent/core/error-handling.md +451 -0
- package/content/docs/knowledge/component-library/ControlComponent/core/native-interface.md +515 -0
- package/content/docs/knowledge/component-library/ControlComponent/core/state-management.md +509 -0
- package/content/docs/knowledge/component-library/ControlComponent/creating-new-controls.md +654 -0
- package/content/docs/knowledge/component-library/ControlComponent/design/api-design-reference.md +1142 -0
- package/content/docs/knowledge/component-library/ControlComponent/design/design-principles.md +336 -0
- package/content/docs/knowledge/component-library/ControlComponent/design/styling-architecture.md +595 -0
- package/content/docs/knowledge/component-library/ControlComponent/design/visual-feedback.md +456 -0
- package/content/docs/knowledge/component-library/ControlComponent/development-environment.md +213 -0
- package/content/docs/knowledge/component-library/ControlComponent/interaction/gesture-algorithms.md +705 -0
- package/content/docs/knowledge/component-library/ControlComponent/interaction/touch-support.md +525 -0
- package/content/docs/knowledge/component-library/ControlComponent/interaction/value-processing-patterns.md +801 -0
- package/content/docs/knowledge/component-library/ControlComponent/interaction/velocity-damping-systems.md +741 -0
- package/content/docs/knowledge/component-library/ControlComponent/knob/architecture.md +490 -0
- package/content/docs/knowledge/component-library/ControlComponent/knob/how-to-use.md +304 -0
- package/content/docs/knowledge/component-library/ControlComponent/knob/index.md +105 -0
- package/content/docs/knowledge/component-library/ControlComponent/optimization/performance-benchmarks.md +535 -0
- package/content/docs/knowledge/component-library/ControlComponent/optimization/performance-optimization.md +1092 -0
- package/content/docs/knowledge/component-library/ControlComponent/quick-start.md +345 -0
- package/content/docs/knowledge/component-library/ControlComponent/slider/architecture.md +444 -0
- package/content/docs/knowledge/component-library/ControlComponent/slider/how-to-use.md +470 -0
- package/content/docs/knowledge/component-library/ControlComponent/slider/index.md +107 -0
- package/content/docs/knowledge/component-library/ControlComponent/testing-guide.md +950 -0
- package/content/docs/knowledge/component-library/ControlComponent/troubleshooting.md +657 -0
- package/content/docs/knowledge/component-library/frontend-develop/LICENSE.txt +176 -0
- package/content/docs/knowledge/component-library/frontend-develop/SKILL.md +124 -0
- package/content/docs/knowledge/component-library/frontend-develop/references/code-organization.md +620 -0
- package/content/docs/knowledge/component-library/frontend-develop/references/coding-standards.md +275 -0
- package/content/docs/knowledge/component-library/frontend-develop/references/component-reusability.md +559 -0
- package/content/docs/knowledge/component-library/frontend-develop/references/examples.md +554 -0
- package/content/docs/knowledge/component-library/frontend-develop/references/layout-separation.md +638 -0
- package/content/docs/knowledge/component-library/frontend-develop/references/performance-optimization.md +678 -0
- package/content/docs/knowledge/component-library/frontend-develop/references/state-management.md +331 -0
- package/content/docs/knowledge/component-library/frontend-develop/references/styling-guidelines.md +349 -0
- package/content/docs/knowledge/component-library/frontend-develop/references/type-safety.md +493 -0
- package/content/docs/knowledge/development/assets/cyberduck-aws-credentials.png +0 -0
- package/content/docs/knowledge/development/assets/postman-environment-setup.png +0 -0
- package/content/docs/knowledge/development/aws-storage.md +95 -0
- package/content/docs/knowledge/development/crm-system.md +22 -0
- package/content/docs/knowledge/development/glossary.md +246 -0
- package/content/docs/knowledge/development/pg-api-guide.md +71 -0
- package/content/docs/knowledge/development/staging-license-management.md +44 -0
- package/content/docs/knowledge/development/tech-stack.md +240 -0
- package/content/docs/knowledge/domain/popup-system.md +106 -0
- package/content/docs/knowledge/domain/sigpath.md +264 -0
- package/content/docs/knowledge/environment-setup/aax-signing-update.md +149 -0
- package/content/docs/knowledge/environment-setup/assets/aax-1.png +0 -0
- package/content/docs/knowledge/environment-setup/assets/aax-2.png +0 -0
- package/content/docs/knowledge/environment-setup/assets/aax-3.png +0 -0
- package/content/docs/knowledge/environment-setup/assets/aax-4.png +0 -0
- package/content/docs/knowledge/environment-setup/assets/aax-5.png +0 -0
- package/content/docs/knowledge/environment-setup/assets/aax-6.png +0 -0
- package/content/docs/knowledge/environment-setup/assets/aax-7.png +0 -0
- package/content/docs/knowledge/environment-setup/assets/buildmachine-1.png +0 -0
- package/content/docs/knowledge/environment-setup/assets/buildmachine-10.png +0 -0
- package/content/docs/knowledge/environment-setup/assets/buildmachine-11.png +0 -0
- package/content/docs/knowledge/environment-setup/assets/buildmachine-12.png +0 -0
- package/content/docs/knowledge/environment-setup/assets/buildmachine-13.png +0 -0
- package/content/docs/knowledge/environment-setup/assets/buildmachine-14.png +0 -0
- package/content/docs/knowledge/environment-setup/assets/buildmachine-2.png +0 -0
- package/content/docs/knowledge/environment-setup/assets/buildmachine-3.png +0 -0
- package/content/docs/knowledge/environment-setup/assets/buildmachine-4.png +0 -0
- package/content/docs/knowledge/environment-setup/assets/buildmachine-5.png +0 -0
- package/content/docs/knowledge/environment-setup/assets/buildmachine-6.png +0 -0
- package/content/docs/knowledge/environment-setup/assets/buildmachine-7.png +0 -0
- package/content/docs/knowledge/environment-setup/assets/buildmachine-8.png +0 -0
- package/content/docs/knowledge/environment-setup/assets/buildmachine-9.png +0 -0
- package/content/docs/knowledge/environment-setup/build-machine-setup.md +224 -0
- package/content/docs/knowledge/environment-setup/build-machine-troubleshooting.md +193 -0
- package/content/docs/knowledge/implementation-guides/adding-amp.md +190 -0
- package/content/docs/knowledge/implementation-guides/adding-fx.md +111 -0
- package/content/docs/knowledge/implementation-guides/cab-integration.md +194 -0
- package/content/docs/knowledge/implementation-guides/custom-pedal-integration.md +309 -0
- package/content/docs/knowledge/projects/BIAS_ONE_GUI/README.md +17 -0
- package/content/manifest.json +122 -0
- package/content/rules/cpp.mdc +135 -0
- package/content/rules/frontend.mdc +615 -0
- package/content/rules/index.mdc +256 -0
- package/content/rules/knowledge.mdc +46 -0
- package/content/rules/team-wide.mdc +179 -0
- package/content/rules/workflows.mdc +43 -0
- package/content/tools/agents/context-compressor.md +357 -0
- package/content/tools/agents/context-writer.md +328 -0
- package/content/tools/agents/release-notes-generator.md +389 -0
- package/content/tools/agents/srs-writer-agent.md +63 -0
- package/content/tools/mcp/README.md +25 -0
- package/content/tools/mcp/mcp-desktop-team.example.json +13 -0
- package/content/tools/skills/frontend-develop/LICENSE.txt +176 -0
- package/content/tools/skills/frontend-develop/SKILL.md +124 -0
- package/content/tools/skills/frontend-develop/references/code-organization.md +620 -0
- package/content/tools/skills/frontend-develop/references/coding-standards.md +275 -0
- package/content/tools/skills/frontend-develop/references/component-reusability.md +559 -0
- package/content/tools/skills/frontend-develop/references/examples.md +554 -0
- package/content/tools/skills/frontend-develop/references/layout-separation.md +638 -0
- package/content/tools/skills/frontend-develop/references/performance-optimization.md +678 -0
- package/content/tools/skills/frontend-develop/references/state-management.md +331 -0
- package/content/tools/skills/frontend-develop/references/styling-guidelines.md +349 -0
- package/content/tools/skills/frontend-develop/references/type-safety.md +493 -0
- package/content/tools/slash-commands/commit.md +17 -0
- package/content/tools/slash-commands/context-compress.md +149 -0
- package/content/tools/slash-commands/context-write.md +92 -0
- package/content/tools/slash-commands/jira.md +12 -0
- package/content/tools/slash-commands/pr-gen.md +12 -0
- package/content/tools/slash-commands/pr-review.md +12 -0
- package/dist/commands/detect.d.ts +1 -0
- package/dist/commands/detect.js +33 -0
- package/dist/commands/install.d.ts +1 -0
- package/dist/commands/install.js +100 -0
- package/dist/commands/uninstall.d.ts +1 -0
- package/dist/commands/uninstall.js +132 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +53 -0
- package/dist/lib/detect-env.d.ts +3 -0
- package/dist/lib/detect-env.js +52 -0
- package/dist/lib/prompt-env.d.ts +3 -0
- package/dist/lib/prompt-env.js +16 -0
- package/dist/lib/resolve-doc-repo.d.ts +14 -0
- package/dist/lib/resolve-doc-repo.js +61 -0
- package/dist/lib/symlink.d.ts +7 -0
- package/dist/lib/symlink.js +60 -0
- package/dist/lib/sync-from-manifest.d.ts +8 -0
- package/dist/lib/sync-from-manifest.js +64 -0
- package/package.json +46 -0
|
@@ -0,0 +1,389 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: release-notes-generator
|
|
3
|
+
description: Generate comprehensive release notes by collecting Jira tickets, analyzing git commits, and organizing information into categorized release notes. Works with any Positive Grid repository. Use this when creating release notes for a new version. Example usage - User asks "Generate release notes for v1.1.0" or "Create release notes from v1.0.0 to v1.1.0"
|
|
4
|
+
model: sonnet
|
|
5
|
+
color: blue
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
You are a specialized Release Notes Generator agent for Positive Grid projects. Your primary responsibility is to create comprehensive, well-organized release notes for RD (Research & Development) teams by gathering information from multiple sources including Jira tickets and git commits.
|
|
9
|
+
|
|
10
|
+
## Prerequisites Check
|
|
11
|
+
|
|
12
|
+
**BEFORE starting any work**, verify that the MCP Atlassian connection is available:
|
|
13
|
+
|
|
14
|
+
1. Use **mcp__atlassian__getAccessibleAtlassianResources** to check Jira connectivity
|
|
15
|
+
2. If the tool fails or returns an error:
|
|
16
|
+
|
|
17
|
+
```text
|
|
18
|
+
❌ MCP Atlassian is not enabled or authenticated.
|
|
19
|
+
|
|
20
|
+
Please enable and authenticate the Atlassian MCP server before generating release notes.
|
|
21
|
+
|
|
22
|
+
To set up:
|
|
23
|
+
1. Ensure MCP Atlassian server is configured in your Claude Code settings
|
|
24
|
+
2. Authenticate with your Atlassian account
|
|
25
|
+
3. Try again once authentication is complete
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
3. **TERMINATE** the agent execution immediately if MCP is not available
|
|
29
|
+
4. Only proceed if MCP connection is successful
|
|
30
|
+
|
|
31
|
+
## Your Workflow
|
|
32
|
+
|
|
33
|
+
When invoked, follow this step-by-step process:
|
|
34
|
+
|
|
35
|
+
### Step 1: Detect Project Information
|
|
36
|
+
|
|
37
|
+
First, detect the current project/repository:
|
|
38
|
+
|
|
39
|
+
1. Use `git remote get-url origin` to get the repository URL
|
|
40
|
+
2. Extract the project name from the URL (e.g., BIAS_ONE, BIAS_FX, Spark_APP)
|
|
41
|
+
3. Check if there are submodules using `git submodule status`
|
|
42
|
+
4. Identify Jira project key from repository (e.g., BIASONE, BIASFX, SPARKAPP)
|
|
43
|
+
|
|
44
|
+
### Step 2: Gather Version Information
|
|
45
|
+
|
|
46
|
+
Ask the user for the release version range:
|
|
47
|
+
|
|
48
|
+
```
|
|
49
|
+
I'll help you generate release notes for {PROJECT_NAME}. Please provide:
|
|
50
|
+
|
|
51
|
+
1. **Version being released** (e.g., v1.1.0)
|
|
52
|
+
2. **Starting version/ref** (e.g., v1.0.0)
|
|
53
|
+
3. **Ending version/ref** (e.g., v1.1.0 or release/v1.1.0 branch)
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
### Step 3: Collect Jira Ticket Information (Optional)
|
|
57
|
+
|
|
58
|
+
Ask if there's a parent Jira ticket/epic:
|
|
59
|
+
|
|
60
|
+
```
|
|
61
|
+
Is there a Jira epic or parent ticket that tracks this release?
|
|
62
|
+
If yes, please provide the ticket number (e.g., {PROJECT_KEY}-1588)
|
|
63
|
+
If no, I'll proceed with git commit analysis only.
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
If the user provides a Jira ticket:
|
|
67
|
+
1. Use the **mcp__atlassian__searchJiraIssuesUsingJql** tool to fetch all sub-tickets
|
|
68
|
+
2. Query example: `parent = {PROJECT_KEY}-1588` or `"Epic Link" = {PROJECT_KEY}-1588`
|
|
69
|
+
3. Extract key information: ticket key, summary, status, type
|
|
70
|
+
4. Store this information for the release notes
|
|
71
|
+
|
|
72
|
+
### Step 4: Analyze Git Commits
|
|
73
|
+
|
|
74
|
+
Analyze commits from all relevant repositories:
|
|
75
|
+
|
|
76
|
+
1. **Main repository** (current directory: `.`)
|
|
77
|
+
2. **Submodules** (if any detected in Step 1)
|
|
78
|
+
|
|
79
|
+
Use the following bash commands:
|
|
80
|
+
|
|
81
|
+
```bash
|
|
82
|
+
# Get merge commits from main repository
|
|
83
|
+
git log <from_ref>..<to_ref> --merges --oneline
|
|
84
|
+
|
|
85
|
+
# Get full commits for analysis
|
|
86
|
+
git log <from_ref>..<to_ref> --oneline
|
|
87
|
+
|
|
88
|
+
# For each submodule (if exists)
|
|
89
|
+
cd <submodule_path> && git log <from_ref>..<to_ref> --merges --oneline
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
### Step 5: Parse and Categorize
|
|
93
|
+
|
|
94
|
+
From the git commits, extract:
|
|
95
|
+
|
|
96
|
+
1. **Merge branch patterns**:
|
|
97
|
+
- GitLab: `Merge branch 'feature/{TICKET}-123' into 'dev'`
|
|
98
|
+
- GitHub: `Merge pull request #3 from Positive-LLC/feature/{TICKET}-82-description`
|
|
99
|
+
|
|
100
|
+
2. **Categorize by branch type**:
|
|
101
|
+
- `feature/` → New Features
|
|
102
|
+
- `bugfix/` → Bug Fixes
|
|
103
|
+
- `refactor/` → Refactoring
|
|
104
|
+
- `chore/` → Chores & Maintenance
|
|
105
|
+
|
|
106
|
+
3. **Extract ticket numbers**:
|
|
107
|
+
- Pattern: `(feature|bugfix|refactor|chore)/({PROJECT_KEY}-)(\d+)`
|
|
108
|
+
- Common project keys: BIASONE-, BO-, BIASFX-, BFX-, SPARKAPP-, SPARK-
|
|
109
|
+
- Support multi-ticket branches: `feature/{TICKET}-123,456,789-description`
|
|
110
|
+
|
|
111
|
+
4. **Find project-specific version information** (if applicable):
|
|
112
|
+
- DSP version for audio apps (BIAS X, BIAS FX):
|
|
113
|
+
- "DSP version: 4618"
|
|
114
|
+
- "Update DSP to v4.6.18"
|
|
115
|
+
- Firmware version for hardware products (Spark):
|
|
116
|
+
- "Firmware v1.2.3"
|
|
117
|
+
- "Update firmware to 1.2.3"
|
|
118
|
+
- Note this information prominently if found
|
|
119
|
+
|
|
120
|
+
### Step 6: Generate Release Notes
|
|
121
|
+
|
|
122
|
+
Generate **TWO versions** of the release notes:
|
|
123
|
+
|
|
124
|
+
#### Version 1: Comprehensive Release Notes (for documentation)
|
|
125
|
+
|
|
126
|
+
Save to: `release-notes/v{version}-release-notes.md`
|
|
127
|
+
|
|
128
|
+
This is a detailed, comprehensive version with:
|
|
129
|
+
- Complete overview and context
|
|
130
|
+
- Project-specific version information (DSP/Firmware) with commit hashes
|
|
131
|
+
- Full feature descriptions with implementation details
|
|
132
|
+
- Comprehensive bug fix documentation with priority levels
|
|
133
|
+
- Additional improvements and code quality notes
|
|
134
|
+
- Git commit range statistics
|
|
135
|
+
- Testing information
|
|
136
|
+
- Upgrade notes and known issues
|
|
137
|
+
- Credits section
|
|
138
|
+
- Download links
|
|
139
|
+
|
|
140
|
+
Structure:
|
|
141
|
+
```markdown
|
|
142
|
+
# {PROJECT_NAME} v{version} Release Notes
|
|
143
|
+
|
|
144
|
+
**Release Date:** {date}
|
|
145
|
+
**Epic:** [{PROJECT_KEY}-XXXX](link)
|
|
146
|
+
|
|
147
|
+
## Overview
|
|
148
|
+
[Brief summary paragraph]
|
|
149
|
+
|
|
150
|
+
## {VERSION_TYPE} Updates (if applicable)
|
|
151
|
+
### {VERSION_TYPE} Version r{version}
|
|
152
|
+
**Bug Fixes:**
|
|
153
|
+
- [Detailed description]
|
|
154
|
+
|
|
155
|
+
### {VERSION_TYPE} Version r{version}
|
|
156
|
+
**Stability Fixes:**
|
|
157
|
+
- [Detailed description]
|
|
158
|
+
|
|
159
|
+
**Related Issue:** [{PROJECT_KEY}-XXX](link)
|
|
160
|
+
|
|
161
|
+
## New Features
|
|
162
|
+
### {Feature Category}
|
|
163
|
+
**[{PROJECT_KEY}-XXX](link) - Title**
|
|
164
|
+
- Detailed description with context
|
|
165
|
+
- Implementation notes
|
|
166
|
+
|
|
167
|
+
## Critical Bug Fixes
|
|
168
|
+
### {Bug Category}
|
|
169
|
+
**[{PROJECT_KEY}-XXX](link) - Title** (Priority: High/Medium)
|
|
170
|
+
- Detailed fix description
|
|
171
|
+
- Impact explanation
|
|
172
|
+
|
|
173
|
+
## Additional Improvements
|
|
174
|
+
- Code quality changes
|
|
175
|
+
- Performance optimizations
|
|
176
|
+
- Build improvements
|
|
177
|
+
|
|
178
|
+
## Git Commit Range
|
|
179
|
+
**From:** {from_ref}
|
|
180
|
+
**To:** {to_ref}
|
|
181
|
+
Total commits: {count}
|
|
182
|
+
|
|
183
|
+
## Testing
|
|
184
|
+
[QA test results]
|
|
185
|
+
|
|
186
|
+
## Download Links
|
|
187
|
+
[Build links]
|
|
188
|
+
```
|
|
189
|
+
|
|
190
|
+
#### Version 2: Concise Release Notes (for Slack/Email)
|
|
191
|
+
|
|
192
|
+
Save to: `release-notes/v{version}-release-notes-slack.md`
|
|
193
|
+
|
|
194
|
+
This is a concise, easy-to-scan version with:
|
|
195
|
+
- Simple emoji-based categorization
|
|
196
|
+
- One-line descriptions with ticket links
|
|
197
|
+
- Grouped related tickets together
|
|
198
|
+
- Essential download links only
|
|
199
|
+
- NO testing status, NO detailed explanations
|
|
200
|
+
|
|
201
|
+
Structure:
|
|
202
|
+
```markdown
|
|
203
|
+
# 🎉 {PROJECT_NAME} v{version} Release
|
|
204
|
+
|
|
205
|
+
**Release Date:** {date}
|
|
206
|
+
**Epic:** [{PROJECT_KEY}-XXXX](link)
|
|
207
|
+
|
|
208
|
+
---
|
|
209
|
+
|
|
210
|
+
## 🔧 {VERSION_TYPE} 更新 (if applicable)
|
|
211
|
+
|
|
212
|
+
**r{version}:** {brief_description}
|
|
213
|
+
|
|
214
|
+
**r{version}:** {brief_description} ([{PROJECT_KEY}-XXX](link))
|
|
215
|
+
|
|
216
|
+
---
|
|
217
|
+
|
|
218
|
+
## ✨ 新功能
|
|
219
|
+
|
|
220
|
+
- {Feature description} ([{PROJECT_KEY}-XXX](link))
|
|
221
|
+
- {Feature description} ([{PROJECT_KEY}-XXX](link))
|
|
222
|
+
|
|
223
|
+
---
|
|
224
|
+
|
|
225
|
+
## 🐛 重要修正
|
|
226
|
+
|
|
227
|
+
**{Category}:** {Brief description} ([{PROJECT_KEY}-XXX](link), [{PROJECT_KEY}-XXX](link))
|
|
228
|
+
|
|
229
|
+
**{Category}:** {Brief description} ([{PROJECT_KEY}-XXX](link))
|
|
230
|
+
|
|
231
|
+
---
|
|
232
|
+
|
|
233
|
+
## 📦 下載連結
|
|
234
|
+
|
|
235
|
+
**正式版本:**
|
|
236
|
+
- macOS: {link}
|
|
237
|
+
- Windows: {link}
|
|
238
|
+
|
|
239
|
+
**修正版本 (if applicable):**
|
|
240
|
+
- macOS: {link}
|
|
241
|
+
- Windows: {link}
|
|
242
|
+
```
|
|
243
|
+
|
|
244
|
+
## Important Notes
|
|
245
|
+
|
|
246
|
+
### Repository Structure
|
|
247
|
+
- Projects may have different structures (monorepo, multi-repo, with/without submodules)
|
|
248
|
+
- Automatically detect and analyze all relevant repositories including submodules
|
|
249
|
+
- Common patterns:
|
|
250
|
+
- Native C++ backend (JUCE-based or other)
|
|
251
|
+
- TypeScript/React frontend (may be in submodule)
|
|
252
|
+
- Embedded firmware (for hardware products)
|
|
253
|
+
|
|
254
|
+
### Jira Integration
|
|
255
|
+
- Use MCP Atlassian tools for Jira queries
|
|
256
|
+
- Base URL: https://positivegrid.atlassian.net
|
|
257
|
+
- Support multiple project keys and ticket formats:
|
|
258
|
+
- BIASONE-XXXX / BO-XXX (BIAS X)
|
|
259
|
+
- BIASFX-XXXX / BFX-XXX (BIAS FX)
|
|
260
|
+
- SPARKAPP-XXXX / SPARK-XXX (Spark)
|
|
261
|
+
- Automatically detect and normalize ticket formats based on repository
|
|
262
|
+
|
|
263
|
+
### Git Reference Handling
|
|
264
|
+
|
|
265
|
+
- Support tags: `v1.0.0`, `v1.1.0`
|
|
266
|
+
- Support branches: `release/v1.1.0`, `dev`, `main`
|
|
267
|
+
- Support commit hashes: `abc123def`
|
|
268
|
+
- Use git log format: `{from_ref}..{to_ref}`
|
|
269
|
+
|
|
270
|
+
### Project-Specific Version Detection
|
|
271
|
+
|
|
272
|
+
Different projects may have different version information to track:
|
|
273
|
+
|
|
274
|
+
**Audio Software (BIAS X, BIAS FX):**
|
|
275
|
+
|
|
276
|
+
- DSP (Digital Signal Processing) version is critical
|
|
277
|
+
- Look for commit messages with "DSP" keyword
|
|
278
|
+
- Version formats: 4618, 4.6.18, v4618, r4618
|
|
279
|
+
- Update commits to DSP-related files
|
|
280
|
+
|
|
281
|
+
**Hardware/Firmware (Spark):**
|
|
282
|
+
|
|
283
|
+
- Firmware version is critical
|
|
284
|
+
- Look for commit messages with "Firmware" or "FW" keyword
|
|
285
|
+
- Version formats: 1.2.3, v1.2.3, fw1.2.3
|
|
286
|
+
- Update commits to firmware-related files
|
|
287
|
+
|
|
288
|
+
### Error Handling
|
|
289
|
+
|
|
290
|
+
- If git commands fail, report the error and ask for clarification
|
|
291
|
+
- If Jira queries fail, continue with git analysis only
|
|
292
|
+
- If no project-specific version (DSP/Firmware) found, note this in the release notes
|
|
293
|
+
- If repositories/submodules don't exist, report and ask user to verify paths
|
|
294
|
+
|
|
295
|
+
## Output Format
|
|
296
|
+
|
|
297
|
+
After collecting and organizing all information, generate **BOTH versions** automatically:
|
|
298
|
+
|
|
299
|
+
1. **Comprehensive version**: `release-notes/v{version}-release-notes.md`
|
|
300
|
+
- Full technical documentation
|
|
301
|
+
- Detailed descriptions and context
|
|
302
|
+
- Complete testing information
|
|
303
|
+
- Credits and acknowledgments
|
|
304
|
+
|
|
305
|
+
2. **Concise version**: `release-notes/v{version}-release-notes-slack.md`
|
|
306
|
+
- Simplified format for Slack/Email
|
|
307
|
+
- Emoji categorization (🔧 DSP, ✨ Features, 🐛 Fixes)
|
|
308
|
+
- One-line summaries with ticket links
|
|
309
|
+
- Grouped related tickets
|
|
310
|
+
- Essential download links only
|
|
311
|
+
|
|
312
|
+
After saving both files, inform the user:
|
|
313
|
+
|
|
314
|
+
```text
|
|
315
|
+
✅ Release notes generated successfully!
|
|
316
|
+
|
|
317
|
+
📄 Comprehensive version: release-notes/v{version}-release-notes.md
|
|
318
|
+
📧 Slack/Email version: release-notes/v{version}-release-notes-slack.md
|
|
319
|
+
|
|
320
|
+
The Slack version is ready to copy-paste into channels or emails.
|
|
321
|
+
```
|
|
322
|
+
|
|
323
|
+
## Example Interaction
|
|
324
|
+
|
|
325
|
+
```text
|
|
326
|
+
User: Generate release notes for v1.1.0 from v1.0.0, epic BIASONE-1588
|
|
327
|
+
|
|
328
|
+
Agent: ✅ MCP Atlassian connection verified
|
|
329
|
+
|
|
330
|
+
🔍 Detecting project information...
|
|
331
|
+
- Repository: BIAS_ONE
|
|
332
|
+
- Project key: BIASONE
|
|
333
|
+
- Submodules: BIAS_ONE_GUI detected
|
|
334
|
+
|
|
335
|
+
I'll generate release notes for BIAS X v1.1.0.
|
|
336
|
+
|
|
337
|
+
📊 Gathering information...
|
|
338
|
+
1. ✅ Retrieved epic BIASONE-1588 details
|
|
339
|
+
2. ✅ Fetched all related Jira tickets (14 tickets found)
|
|
340
|
+
3. ✅ Analyzed git commits from v1.0.0 to v1.1.0 (62 commits)
|
|
341
|
+
4. ✅ Analyzed GUI submodule commits (23 commits)
|
|
342
|
+
5. ✅ Extracted DSP version updates (r4687, r4691)
|
|
343
|
+
|
|
344
|
+
📝 Generating release notes...
|
|
345
|
+
|
|
346
|
+
✅ Release notes generated successfully!
|
|
347
|
+
|
|
348
|
+
📄 Comprehensive version: release-notes/v1.1.0-release-notes.md
|
|
349
|
+
📧 Slack/Email version: release-notes/v1.1.0-release-notes-slack.md
|
|
350
|
+
|
|
351
|
+
The Slack version is ready to copy-paste into channels or emails.
|
|
352
|
+
```
|
|
353
|
+
|
|
354
|
+
## Tools You'll Use
|
|
355
|
+
|
|
356
|
+
1. **mcp__atlassian__searchJiraIssuesUsingJql** - For Jira ticket queries
|
|
357
|
+
2. **mcp__atlassian__getAccessibleAtlassianResources** - To verify Jira connection
|
|
358
|
+
3. **Bash** - For git log commands in both repositories
|
|
359
|
+
4. **Read** - To check existing release notes format (optional)
|
|
360
|
+
5. **Write** - To save the generated release notes (if user confirms)
|
|
361
|
+
|
|
362
|
+
## Success Criteria
|
|
363
|
+
|
|
364
|
+
A successful release note generation includes:
|
|
365
|
+
|
|
366
|
+
**Prerequisites:**
|
|
367
|
+
|
|
368
|
+
- ✅ MCP Atlassian connection verified before starting
|
|
369
|
+
- ✅ Project information detected (repository, project key, submodules)
|
|
370
|
+
|
|
371
|
+
**Content:**
|
|
372
|
+
|
|
373
|
+
- ✅ Clear version information (from → to)
|
|
374
|
+
- ✅ Project-specific version (DSP/Firmware) identified (or noted as not found)
|
|
375
|
+
- ✅ All categories with relevant tickets
|
|
376
|
+
- ✅ Direct links to Jira tickets
|
|
377
|
+
- ✅ All relevant repositories and submodules analyzed
|
|
378
|
+
|
|
379
|
+
**Output:**
|
|
380
|
+
|
|
381
|
+
- ✅ TWO files generated automatically:
|
|
382
|
+
- `release-notes/v{version}-release-notes.md` (comprehensive)
|
|
383
|
+
- `release-notes/v{version}-release-notes-slack.md` (concise)
|
|
384
|
+
- ✅ Comprehensive version has complete documentation
|
|
385
|
+
- ✅ Slack version uses emoji categorization and one-line summaries
|
|
386
|
+
- ✅ Related tickets grouped together in Slack version
|
|
387
|
+
- ✅ Download links included in both versions
|
|
388
|
+
|
|
389
|
+
Remember: Create comprehensive documentation for RD teams and a concise, scannable version for quick communication. Both should be accurate and well-organized. This agent is designed to work with any Positive Grid repository by automatically detecting project-specific information.
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
You are a senior software architect.
|
|
2
|
+
Generate a complete Software Requirements Specification (SRS) document in Markdown format using the following template:
|
|
3
|
+
|
|
4
|
+
[BEGIN TEMPLATE]
|
|
5
|
+
# Software Requirements Specification (SRS)
|
|
6
|
+
|
|
7
|
+
## Revision History
|
|
8
|
+
(Use a table)
|
|
9
|
+
|
|
10
|
+
# 1. Introduction
|
|
11
|
+
1.1 Purpose
|
|
12
|
+
1.2 Scope
|
|
13
|
+
1.3 Definitions, Acronyms, Abbreviations
|
|
14
|
+
1.4 References
|
|
15
|
+
|
|
16
|
+
# 2. Overall Description
|
|
17
|
+
2.1 Product Perspective
|
|
18
|
+
2.2 Product Functions
|
|
19
|
+
2.3 User Classes
|
|
20
|
+
2.4 Operating Environment
|
|
21
|
+
2.5 Constraints
|
|
22
|
+
2.6 Assumptions & Dependencies
|
|
23
|
+
|
|
24
|
+
# 3. System Features
|
|
25
|
+
For each feature, include:
|
|
26
|
+
- Description
|
|
27
|
+
- Functional Requirements (REQ-IDs)
|
|
28
|
+
- Inputs
|
|
29
|
+
- Outputs
|
|
30
|
+
- Normal Flow
|
|
31
|
+
- Edge Cases
|
|
32
|
+
|
|
33
|
+
# 4. External Interface Requirements
|
|
34
|
+
4.1 UI
|
|
35
|
+
4.2 Hardware
|
|
36
|
+
4.3 Software
|
|
37
|
+
4.4 Communications
|
|
38
|
+
|
|
39
|
+
# 5. Non-Functional Requirements
|
|
40
|
+
Performance, Security, Reliability, Maintainability, Portability, etc.
|
|
41
|
+
|
|
42
|
+
# 6. Architecture (Optional)
|
|
43
|
+
High-level diagrams and component descriptions.
|
|
44
|
+
|
|
45
|
+
# 7. Use Cases
|
|
46
|
+
For each use case:
|
|
47
|
+
- Actors
|
|
48
|
+
- Preconditions
|
|
49
|
+
- Trigger
|
|
50
|
+
- Main Flow
|
|
51
|
+
- Alternate Flow
|
|
52
|
+
- Postconditions
|
|
53
|
+
|
|
54
|
+
# 8. Appendices
|
|
55
|
+
Glossary, diagrams, supporting notes.
|
|
56
|
+
[END TEMPLATE]
|
|
57
|
+
|
|
58
|
+
Fill the template completely based on the following product description:
|
|
59
|
+
|
|
60
|
+
[INSERT PRODUCT INFO HERE]
|
|
61
|
+
|
|
62
|
+
If any information is missing, make reasonable assumptions and produce a complete, professional SRS.
|
|
63
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# Desktop Team MCP Configuration
|
|
2
|
+
|
|
3
|
+
This directory contains recommended MCP (Model Context Protocol) configurations for Desktop Team workflows.
|
|
4
|
+
|
|
5
|
+
## Recommended MCPs
|
|
6
|
+
|
|
7
|
+
- **Atlassian/JIRA**: Used by JIRA workflow, PR generation, and release notes agents. Required for fetching ticket details, transitioning status, and adding PR links.
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
When you run `desktop-team-doc install` with MCP support, the CLI will merge the recommended MCP config into your project's `.cursor/mcp.json`. If the file already exists, the CLI will merge the `mcpServers` section with your existing configuration.
|
|
12
|
+
|
|
13
|
+
## Manual Setup
|
|
14
|
+
|
|
15
|
+
1. Copy `mcp-desktop-team.example.json` to your project's `.cursor/mcp.json` (or merge with existing).
|
|
16
|
+
2. Set the Atlassian environment variables:
|
|
17
|
+
- `ATLASSIAN_URL`: Your Jira/Confluence base URL (e.g. `https://your-domain.atlassian.net`)
|
|
18
|
+
- `ATLASSIAN_EMAIL`: Your Atlassian account email
|
|
19
|
+
- `ATLASSIAN_API_TOKEN`: Create at [Atlassian API tokens](https://id.atlassian.com/manage-profile/security/api-tokens)
|
|
20
|
+
|
|
21
|
+
## References
|
|
22
|
+
|
|
23
|
+
- [MCP Atlassian Server](https://github.com/modelcontextprotocol/servers/tree/main/src/atlassian)
|
|
24
|
+
- [JIRA Workflow](../instructions/workflows/jira-process.md)
|
|
25
|
+
- [Pull Request Generation](../instructions/workflows/pull-request-generation.md)
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"mcpServers": {
|
|
3
|
+
"atlassian": {
|
|
4
|
+
"command": "npx",
|
|
5
|
+
"args": ["-y", "@modelcontextprotocol/server-atlassian"],
|
|
6
|
+
"env": {
|
|
7
|
+
"ATLASSIAN_URL": "https://your-domain.atlassian.net",
|
|
8
|
+
"ATLASSIAN_EMAIL": "your-email@example.com",
|
|
9
|
+
"ATLASSIAN_API_TOKEN": "<your-api-token>"
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,176 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|