tachibot-mcp 2.0.2

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.
Files changed (214) hide show
  1. package/.env.example +260 -0
  2. package/CHANGELOG.md +54 -0
  3. package/CODE_OF_CONDUCT.md +56 -0
  4. package/CONTRIBUTING.md +54 -0
  5. package/Dockerfile +36 -0
  6. package/LICENSE +644 -0
  7. package/README.md +201 -0
  8. package/SECURITY.md +95 -0
  9. package/dist/personality/komaai-expressions.js +12 -0
  10. package/dist/profiles/balanced.json +33 -0
  11. package/dist/profiles/code_focus.json +33 -0
  12. package/dist/profiles/full.json +33 -0
  13. package/dist/profiles/minimal.json +33 -0
  14. package/dist/profiles/research_power.json +33 -0
  15. package/dist/scripts/build-profiles.js +46 -0
  16. package/dist/src/application/services/focus/FocusModeRegistry.js +46 -0
  17. package/dist/src/application/services/focus/FocusTool.service.js +109 -0
  18. package/dist/src/application/services/focus/ModeRegistry.js +46 -0
  19. package/dist/src/application/services/focus/modes/focus-deep.mode.js +27 -0
  20. package/dist/src/application/services/focus/modes/status.mode.js +50 -0
  21. package/dist/src/application/services/focus/modes/tachibot-status.mode.js +50 -0
  22. package/dist/src/collaborative-orchestrator.js +391 -0
  23. package/dist/src/config/model-constants.js +188 -0
  24. package/dist/src/config/model-defaults.js +57 -0
  25. package/dist/src/config/model-preferences.js +382 -0
  26. package/dist/src/config/timeout-config.js +130 -0
  27. package/dist/src/config.js +173 -0
  28. package/dist/src/domain/interfaces/IFocusMode.js +5 -0
  29. package/dist/src/domain/interfaces/IProvider.js +6 -0
  30. package/dist/src/domain/interfaces/ITool.js +5 -0
  31. package/dist/src/focus-deep.js +245 -0
  32. package/dist/src/infrastructure/ascii/art/robots.ascii.js +16 -0
  33. package/dist/src/mcp-client.js +90 -0
  34. package/dist/src/memory/index.js +17 -0
  35. package/dist/src/memory/memory-config.js +135 -0
  36. package/dist/src/memory/memory-interface.js +174 -0
  37. package/dist/src/memory/memory-manager.js +383 -0
  38. package/dist/src/memory/providers/devlog-provider.js +385 -0
  39. package/dist/src/memory/providers/hybrid-provider.js +399 -0
  40. package/dist/src/memory/providers/local-provider.js +388 -0
  41. package/dist/src/memory/providers/mem0-provider.js +337 -0
  42. package/dist/src/modes/architect.js +477 -0
  43. package/dist/src/modes/auditor.js +362 -0
  44. package/dist/src/modes/challenger.js +841 -0
  45. package/dist/src/modes/code-reviewer.js +382 -0
  46. package/dist/src/modes/commit-guardian.js +424 -0
  47. package/dist/src/modes/documentation-writer.js +572 -0
  48. package/dist/src/modes/scout.js +587 -0
  49. package/dist/src/modes/shared/helpers/challenger-helpers.js +454 -0
  50. package/dist/src/modes/shared/helpers/index.js +17 -0
  51. package/dist/src/modes/shared/helpers/scout-helpers.js +270 -0
  52. package/dist/src/modes/shared/helpers/verifier-helpers.js +332 -0
  53. package/dist/src/modes/test-architect.js +767 -0
  54. package/dist/src/modes/verifier.js +378 -0
  55. package/dist/src/monitoring/performance-monitor.js +435 -0
  56. package/dist/src/optimization/batch-executor.js +121 -0
  57. package/dist/src/optimization/context-pruner.js +196 -0
  58. package/dist/src/optimization/cost-monitor.js +338 -0
  59. package/dist/src/optimization/index.js +65 -0
  60. package/dist/src/optimization/model-router.js +264 -0
  61. package/dist/src/optimization/result-cache.js +114 -0
  62. package/dist/src/optimization/token-optimizer.js +257 -0
  63. package/dist/src/optimization/token-tracker.js +118 -0
  64. package/dist/src/orchestrator-instructions.js +128 -0
  65. package/dist/src/orchestrator-lite.js +139 -0
  66. package/dist/src/orchestrator.js +191 -0
  67. package/dist/src/orchestrators/collaborative/interfaces/IToolExecutionEngine.js +1 -0
  68. package/dist/src/orchestrators/collaborative/interfaces/IToolExecutionStrategy.js +5 -0
  69. package/dist/src/orchestrators/collaborative/interfaces/IVisualizationRenderer.js +1 -0
  70. package/dist/src/orchestrators/collaborative/registries/ModelProviderRegistry.js +95 -0
  71. package/dist/src/orchestrators/collaborative/registries/ToolAdapterRegistry.js +64 -0
  72. package/dist/src/orchestrators/collaborative/services/tool-execution/ToolExecutionService.js +502 -0
  73. package/dist/src/orchestrators/collaborative/services/visualization/VisualizationService.js +206 -0
  74. package/dist/src/orchestrators/collaborative/types/session-types.js +5 -0
  75. package/dist/src/profiles/balanced.js +37 -0
  76. package/dist/src/profiles/code_focus.js +37 -0
  77. package/dist/src/profiles/debug_intensive.js +59 -0
  78. package/dist/src/profiles/full.js +37 -0
  79. package/dist/src/profiles/minimal.js +37 -0
  80. package/dist/src/profiles/research_code.js +59 -0
  81. package/dist/src/profiles/research_power.js +37 -0
  82. package/dist/src/profiles/types.js +5 -0
  83. package/dist/src/profiles/workflow_builder.js +53 -0
  84. package/dist/src/prompt-engineer-lite.js +78 -0
  85. package/dist/src/prompt-engineer.js +399 -0
  86. package/dist/src/reasoning-chain.js +508 -0
  87. package/dist/src/sequential-thinking.js +291 -0
  88. package/dist/src/server-diagnostic.js +74 -0
  89. package/dist/src/server-raw.js +158 -0
  90. package/dist/src/server-simple.js +58 -0
  91. package/dist/src/server.js +514 -0
  92. package/dist/src/session/session-logger.js +617 -0
  93. package/dist/src/session/session-manager.js +571 -0
  94. package/dist/src/session/session-tools.js +400 -0
  95. package/dist/src/tools/advanced-modes.js +200 -0
  96. package/dist/src/tools/claude-integration.js +356 -0
  97. package/dist/src/tools/consolidated/ai-router.js +174 -0
  98. package/dist/src/tools/consolidated/ai-tool.js +48 -0
  99. package/dist/src/tools/consolidated/brainstorm-tool.js +87 -0
  100. package/dist/src/tools/consolidated/environment-detector.js +80 -0
  101. package/dist/src/tools/consolidated/index.js +50 -0
  102. package/dist/src/tools/consolidated/search-tool.js +110 -0
  103. package/dist/src/tools/consolidated/workflow-tool.js +238 -0
  104. package/dist/src/tools/gemini-tools.js +329 -0
  105. package/dist/src/tools/grok-enhanced.js +376 -0
  106. package/dist/src/tools/grok-tools.js +299 -0
  107. package/dist/src/tools/lmstudio-tools.js +223 -0
  108. package/dist/src/tools/openai-tools.js +498 -0
  109. package/dist/src/tools/openrouter-tools.js +317 -0
  110. package/dist/src/tools/optimized-wrapper.js +204 -0
  111. package/dist/src/tools/perplexity-tools.js +294 -0
  112. package/dist/src/tools/pingpong-tool.js +343 -0
  113. package/dist/src/tools/qwen-wrapper.js +74 -0
  114. package/dist/src/tools/tool-router.js +444 -0
  115. package/dist/src/tools/unified-ai-provider.js +260 -0
  116. package/dist/src/tools/workflow-runner.js +425 -0
  117. package/dist/src/tools/workflow-validator-tool.js +107 -0
  118. package/dist/src/types.js +23 -0
  119. package/dist/src/utils/input-validator.js +130 -0
  120. package/dist/src/utils/model-router.js +91 -0
  121. package/dist/src/utils/progress-stream.js +255 -0
  122. package/dist/src/utils/provider-router.js +88 -0
  123. package/dist/src/utils/smart-api-client.js +146 -0
  124. package/dist/src/utils/table-builder.js +218 -0
  125. package/dist/src/utils/timestamp-formatter.js +134 -0
  126. package/dist/src/utils/tool-compressor.js +257 -0
  127. package/dist/src/utils/tool-config.js +201 -0
  128. package/dist/src/validators/dependency-graph-validator.js +147 -0
  129. package/dist/src/validators/interpolation-validator.js +222 -0
  130. package/dist/src/validators/output-usage-validator.js +151 -0
  131. package/dist/src/validators/syntax-validator.js +102 -0
  132. package/dist/src/validators/tool-registry-validator.js +123 -0
  133. package/dist/src/validators/tool-types.js +97 -0
  134. package/dist/src/validators/types.js +8 -0
  135. package/dist/src/validators/workflow-validator.js +134 -0
  136. package/dist/src/visualizer-lite.js +42 -0
  137. package/dist/src/visualizer.js +179 -0
  138. package/dist/src/workflows/circuit-breaker.js +199 -0
  139. package/dist/src/workflows/custom-workflows.js +451 -0
  140. package/dist/src/workflows/engine/AutoSynthesizer.js +97 -0
  141. package/dist/src/workflows/engine/StepParameterResolver.js +74 -0
  142. package/dist/src/workflows/engine/VariableInterpolator.js +123 -0
  143. package/dist/src/workflows/engine/WorkflowDiscovery.js +125 -0
  144. package/dist/src/workflows/engine/WorkflowExecutionEngine.js +485 -0
  145. package/dist/src/workflows/engine/WorkflowExecutor.js +113 -0
  146. package/dist/src/workflows/engine/WorkflowFileManager.js +244 -0
  147. package/dist/src/workflows/engine/WorkflowHelpers.js +114 -0
  148. package/dist/src/workflows/engine/WorkflowOutputFormatter.js +83 -0
  149. package/dist/src/workflows/engine/events/WorkflowEventBus.js +132 -0
  150. package/dist/src/workflows/engine/events/interfaces/IEventBus.js +5 -0
  151. package/dist/src/workflows/engine/handlers/ErrorRecoveryHandler.js +162 -0
  152. package/dist/src/workflows/engine/handlers/PromptEnhancementHandler.js +115 -0
  153. package/dist/src/workflows/engine/handlers/SessionPersistenceHandler.js +167 -0
  154. package/dist/src/workflows/engine/handlers/StepExecutionHandler.js +231 -0
  155. package/dist/src/workflows/engine/handlers/ToolInvocationHandler.js +46 -0
  156. package/dist/src/workflows/engine/interfaces/IAutoSynthesizer.js +5 -0
  157. package/dist/src/workflows/engine/interfaces/IStepParameterResolver.js +5 -0
  158. package/dist/src/workflows/engine/interfaces/IVariableInterpolator.js +5 -0
  159. package/dist/src/workflows/engine/interfaces/IWorkflowDiscovery.js +4 -0
  160. package/dist/src/workflows/engine/interfaces/IWorkflowFileManager.js +5 -0
  161. package/dist/src/workflows/engine/interfaces/IWorkflowOutputFormatter.js +5 -0
  162. package/dist/src/workflows/engine/state/WorkflowStateMachine.js +194 -0
  163. package/dist/src/workflows/engine/state/interfaces/IStateMachine.js +17 -0
  164. package/dist/src/workflows/fallback-strategies.js +373 -0
  165. package/dist/src/workflows/message-queue.js +455 -0
  166. package/dist/src/workflows/model-router.js +189 -0
  167. package/dist/src/workflows/orchestrator-examples.js +174 -0
  168. package/dist/src/workflows/orchestrator-integration.js +200 -0
  169. package/dist/src/workflows/self-healing.js +524 -0
  170. package/dist/src/workflows/tool-mapper.js +407 -0
  171. package/dist/src/workflows/tool-orchestrator.js +796 -0
  172. package/dist/src/workflows/workflow-engine.js +573 -0
  173. package/dist/src/workflows/workflow-parser.js +283 -0
  174. package/dist/src/workflows/workflow-types.js +95 -0
  175. package/dist/src/workflows.js +568 -0
  176. package/dist/test-workflow-file-output.js +93 -0
  177. package/docs/API_KEYS.md +570 -0
  178. package/docs/CLAUDE_CODE_SETUP.md +181 -0
  179. package/docs/CLAUDE_DESKTOP_MANUAL.md +127 -0
  180. package/docs/CONFIGURATION.md +745 -0
  181. package/docs/FOCUS_MODES.md +240 -0
  182. package/docs/INSTALLATION_BOTH.md +145 -0
  183. package/docs/TERMS.md +352 -0
  184. package/docs/TOOLS_REFERENCE.md +1622 -0
  185. package/docs/TOOL_PARAMETERS.md +496 -0
  186. package/docs/TOOL_PROFILES.md +236 -0
  187. package/docs/WORKFLOWS.md +987 -0
  188. package/docs/WORKFLOW_OUTPUT.md +198 -0
  189. package/docs/WORKFLOW_PROGRESS_TRACKING.md +305 -0
  190. package/docs/workflows/design-brainstorm.md +335 -0
  191. package/package.json +97 -0
  192. package/profiles/balanced.json +37 -0
  193. package/profiles/code_focus.json +37 -0
  194. package/profiles/debug_intensive.json +34 -0
  195. package/profiles/full.json +37 -0
  196. package/profiles/minimal.json +37 -0
  197. package/profiles/research_power.json +37 -0
  198. package/profiles/workflow_builder.json +37 -0
  199. package/smithery.yaml +66 -0
  200. package/start.sh +8 -0
  201. package/tools.config.json +81 -0
  202. package/tsconfig.json +18 -0
  203. package/workflows/accessibility-code-audit.yaml +92 -0
  204. package/workflows/code-architecture-review.yaml +202 -0
  205. package/workflows/code-review.yaml +142 -0
  206. package/workflows/core/iterative-problem-solver.yaml +283 -0
  207. package/workflows/creative-brainstorm-yaml.yaml +215 -0
  208. package/workflows/pingpong.yaml +141 -0
  209. package/workflows/system/README.md +412 -0
  210. package/workflows/system/challenger.yaml +175 -0
  211. package/workflows/system/scout.yaml +164 -0
  212. package/workflows/system/verifier.yaml +133 -0
  213. package/workflows/ultra-creative-brainstorm.yaml +318 -0
  214. package/workflows/ux-research-flow.yaml +92 -0
package/docs/TERMS.md ADDED
@@ -0,0 +1,352 @@
1
+ # Terms of Use & Disclaimers
2
+
3
+ **Last Updated:** October 2025
4
+
5
+ ---
6
+
7
+ ## ⚠️ CRITICAL DISCLAIMER - READ FIRST
8
+
9
+ **BY USING TACHIBOT MCP, YOU ACCEPT ALL RISKS AND RESPONSIBILITIES.**
10
+
11
+ **THE AUTHOR AND CONTRIBUTORS HAVE ZERO (NULL) RESPONSIBILITY AND ZERO (NULL) LIABILITY FOR:**
12
+ - API costs incurred (you pay 100% of all charges)
13
+ - Incorrect or harmful AI outputs
14
+ - Any damages, losses, or expenses you experience
15
+ - Security issues or data breaches
16
+ - Service interruptions or failures
17
+ - Violations of third-party terms of service
18
+ - Legal, financial, or business consequences
19
+ - **ANYTHING AT ALL** - No exceptions, no limits
20
+
21
+ **YOU ARE 100% RESPONSIBLE FOR EVERYTHING** - Monitoring costs, verifying outputs, security, compliance, and all consequences of use.
22
+
23
+ ---
24
+
25
+ ## Important Notices
26
+
27
+ ### 1. No Warranty - Use At Your Own Risk
28
+
29
+ TACHIBOT MCP IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT.
30
+
31
+ **The creators and contributors of TachiBot MCP have NULL (ZERO) responsibility and:**
32
+ - Make NO guarantees about reliability, accuracy, or availability
33
+ - Accept ZERO responsibility for errors, bugs, or unexpected behavior
34
+ - Provide NO guarantee that the software will meet your requirements
35
+ - Accept ZERO LIABILITY for any damages resulting from use or inability to use
36
+
37
+ ### 2. API Costs & Token Usage - 100% Your Responsibility
38
+
39
+ **YOU ARE SOLELY AND COMPLETELY RESPONSIBLE FOR ALL API COSTS INCURRED** when using TachiBot MCP.
40
+
41
+ **AUTHOR HAS NULL (ZERO) RESPONSIBILITY FOR ANY COSTS.**
42
+
43
+ #### Important Cost Disclaimers
44
+
45
+ ⚠️ **Token costs are 100% YOUR financial responsibility**
46
+ - You pay for all API calls to third-party providers (Perplexity, Grok, OpenAI, Google, etc.)
47
+ - The creators of TachiBot MCP have ZERO control over provider pricing
48
+ - The creators of TachiBot MCP have NULL (ZERO) responsibility for your costs
49
+ - The creators of TachiBot MCP will NOT reimburse you for API costs under ANY circumstances
50
+ - Costs can accumulate quickly, especially with:
51
+ - `grok_search` with high `maxSearchSources`
52
+ - `perplexity_research` with `depth: "deep"`
53
+ - `openai_brainstorm` with `model: "gpt-5"`
54
+ - Repeated or automated tool usage
55
+
56
+ ⚠️ **Unexpected costs may occur**
57
+ - API providers may change pricing without notice
58
+ - Bugs in TachiBot or misconfiguration may cause excessive API calls
59
+ - Some tools make multiple API calls per invocation
60
+ - Cost estimates in documentation are APPROXIMATIONS ONLY
61
+
62
+ ⚠️ **Monitor your usage actively**
63
+ - Set spending limits in provider dashboards (OpenAI, Google Cloud, etc.)
64
+ - Review provider usage dashboards regularly
65
+
66
+ #### You Agree To
67
+
68
+ - Monitor your own API usage and costs
69
+ - Set your own spending limits in provider dashboards
70
+ - Understand the cost structure of each API provider
71
+ - Accept full financial responsibility for all API calls
72
+ - NOT hold TachiBot creators responsible for any costs incurred
73
+
74
+ ### 3. Third-Party Services
75
+
76
+ TachiBot MCP integrates with third-party AI services:
77
+ - **Perplexity AI**
78
+ - **xAI (Grok)**
79
+ - **OpenAI**
80
+ - **Google (Gemini)**
81
+ - **OpenRouter**
82
+ - **Others as added**
83
+
84
+ #### You Acknowledge That
85
+
86
+ - These are independent services with their own Terms of Service
87
+ - You must comply with each provider's terms and policies
88
+ - TachiBot creators have NO control over these services
89
+ - These services may change pricing, features, or availability without notice
90
+ - These services may collect data according to their own privacy policies
91
+ - You are responsible for reading and accepting each provider's terms
92
+
93
+ #### Third-Party Terms
94
+
95
+ By using TachiBot MCP, you agree to comply with:
96
+ - [Perplexity Terms](https://www.perplexity.ai/hub/terms-of-use)
97
+ - [xAI Terms](https://x.ai/legal/terms-of-service/)
98
+ - [OpenAI Terms](https://openai.com/policies/terms-of-use)
99
+ - [Google Terms](https://policies.google.com/terms)
100
+ - [OpenRouter Terms](https://openrouter.ai/terms)
101
+
102
+ ### 4. Misuse & Prohibited Activities
103
+
104
+ You agree NOT to use TachiBot MCP for:
105
+
106
+ #### Illegal Activities
107
+ - Any illegal purpose or activity
108
+ - Violating any applicable laws or regulations
109
+ - Infringing on intellectual property rights
110
+
111
+ #### Malicious Use
112
+ - Creating malware, viruses, or other harmful code
113
+ - Conducting attacks on systems or networks
114
+ - Attempting to bypass security measures
115
+ - Harvesting credentials or personal data
116
+ - Social engineering or phishing
117
+
118
+ #### Abusive Usage
119
+ - Generating spam or unsolicited content
120
+ - Creating misleading or deceptive content
121
+ - Automated mass-generation of content
122
+ - Violating third-party service terms of use
123
+ - Circumventing API rate limits or quotas
124
+
125
+ #### You Accept Responsibility For
126
+
127
+ - All content generated using TachiBot MCP
128
+ - How you use generated content
129
+ - Compliance with applicable laws
130
+ - Consequences of misuse
131
+
132
+ ### 5. Rate Limits & Service Availability
133
+
134
+ #### No Guarantees
135
+
136
+ - TachiBot MCP may be unavailable at any time
137
+ - Third-party APIs may be rate-limited or unavailable
138
+ - Tools may fail without warning or error messages
139
+ - Performance may vary based on provider availability
140
+
141
+ #### You Acknowledge
142
+
143
+ - Rate limits are set by third-party providers, not TachiBot
144
+ - Exceeding rate limits is YOUR responsibility
145
+ - TachiBot creators are not liable for service interruptions
146
+ - No SLA (Service Level Agreement) is provided
147
+
148
+ ### 6. Data & Privacy
149
+
150
+ #### Your API Keys
151
+
152
+ - You are responsible for keeping your API keys secure
153
+ - TachiBot stores keys in your local `.env` file only
154
+ - TachiBot does NOT transmit keys except to authorized API providers
155
+ - Lost or stolen keys are YOUR responsibility
156
+ - Unauthorized usage of your keys is YOUR responsibility
157
+
158
+ #### Data Processing
159
+
160
+ - Queries sent to third-party providers are subject to their privacy policies
161
+ - TachiBot does NOT store or log your queries by default
162
+ - Third-party providers may store queries according to their policies
163
+ - You are responsible for understanding each provider's data handling
164
+
165
+ #### Sensitive Information
166
+
167
+ ⚠️ **DO NOT** send sensitive information through TachiBot:
168
+ - Passwords or credentials
169
+ - Private keys or secrets
170
+ - Personal identifying information (PII)
171
+ - Financial information
172
+ - Protected health information (PHI)
173
+ - Confidential business information
174
+
175
+ **If you do:** The responsibility is YOURS, not TachiBot creators'.
176
+
177
+ ### 7. Accuracy & Reliability
178
+
179
+ #### No Guarantee of Accuracy
180
+
181
+ - AI models may produce incorrect, misleading, or harmful output
182
+ - Search results may be outdated or inaccurate
183
+ - Code generated may contain bugs or security vulnerabilities
184
+ - Research findings may be incomplete or biased
185
+
186
+ #### You Must
187
+
188
+ - Verify all information independently
189
+ - Review and test all generated code before use
190
+ - NOT rely solely on AI output for critical decisions
191
+ - Use your professional judgment
192
+
193
+ #### TachiBot Creators Are Not Liable For
194
+
195
+ - Incorrect information provided by AI models
196
+ - Bugs or vulnerabilities in generated code
197
+ - Decisions made based on AI output
198
+ - Any damages resulting from inaccurate output
199
+
200
+ ### 8. Changes to Software & Terms
201
+
202
+ #### We Reserve the Right To
203
+
204
+ - Modify TachiBot MCP at any time without notice
205
+ - Add, remove, or change tools and features
206
+ - Update these terms without prior notification
207
+ - Discontinue the project at any time
208
+
209
+ #### Your Responsibility
210
+
211
+ - Review these terms periodically for changes
212
+ - Understand that continued use = acceptance of new terms
213
+ - Upgrade or modify your usage as needed
214
+
215
+ ### 9. Limitation of Liability - NULL RESPONSIBILITY
216
+
217
+ **TO THE MAXIMUM EXTENT PERMITTED BY LAW:**
218
+
219
+ THE CREATORS, CONTRIBUTORS, AND DISTRIBUTORS OF TACHIBOT MCP HAVE **NULL (ZERO) LIABILITY** AND SHALL NOT BE LIABLE FOR:
220
+
221
+ - **API Costs:** ALL costs from third-party providers - you pay 100%, we pay 0%
222
+ - **Direct Damages:** Including but not limited to financial losses, data loss, or service interruption
223
+ - **Indirect Damages:** Including lost profits, lost revenue, or lost business opportunities
224
+ - **Consequential Damages:** Resulting from use or inability to use the software
225
+ - **Punitive Damages:** For any reason whatsoever
226
+ - **Third-Party Services:** Actions, failures, or costs from integrated services
227
+ - **Security Breaches:** Resulting from use of the software
228
+ - **Damages from Misuse:** Resulting from improper configuration or usage
229
+ - **AI Output Issues:** Incorrect, harmful, biased, or misleading content
230
+ - **Legal Consequences:** Violations of laws, regulations, or third-party rights
231
+ - **Business Losses:** Lost opportunities, reputation damage, or competitive disadvantage
232
+ - **Personal Damages:** Any injury, harm, or suffering of any kind
233
+
234
+ **Our responsibility is NULL (ZERO) even if:**
235
+ - The creators have been advised of the possibility of such damages
236
+ - A remedy fails of its essential purpose
237
+ - Damages result from bugs, errors, or failures in the software
238
+ - Damages result from our negligence or willful misconduct
239
+ - Damages are catastrophic or severe
240
+
241
+ **There is NO dollar limit to this limitation - our liability is ZERO in all cases.**
242
+
243
+ ### 10. Indemnification
244
+
245
+ You agree to indemnify, defend, and hold harmless the creators, contributors, and distributors of TachiBot MCP from any claims, damages, losses, liabilities, and expenses (including legal fees) arising from:
246
+
247
+ - Your use of TachiBot MCP
248
+ - Your violation of these terms
249
+ - Your violation of third-party rights
250
+ - Your API usage and associated costs
251
+ - Content you generate using the software
252
+ - Your misuse or illegal use of the software
253
+
254
+ ### 11. Open Source License
255
+
256
+ TachiBot MCP is licensed under the ISC License (see LICENSE file).
257
+
258
+ #### ISC License Summary
259
+
260
+ **Permission is granted to:**
261
+ - Use the software for any purpose
262
+ - Copy and distribute the software
263
+ - Modify the software
264
+
265
+ **Conditions:**
266
+ - Include copyright notice and license in all copies
267
+ - Software is provided "as is" without warranty
268
+
269
+ For full license text, see the LICENSE file in the repository.
270
+
271
+ ### 12. Support & Maintenance
272
+
273
+ #### No Obligation to Provide Support
274
+
275
+ The creators of TachiBot MCP are NOT obligated to:
276
+ - Provide technical support
277
+ - Fix bugs or issues
278
+ - Respond to questions or requests
279
+ - Maintain the software long-term
280
+ - Release updates or new features
281
+
282
+ #### Community Support
283
+
284
+ - Issues may be reported on GitHub
285
+ - Community members may provide help voluntarily
286
+ - No guarantee of response or resolution
287
+
288
+ ### 13. Geographic Restrictions
289
+
290
+ Some third-party API services may have geographic restrictions. You are responsible for:
291
+ - Ensuring you can legally use each API service in your location
292
+ - Complying with export control laws
293
+ - Understanding regional availability limitations
294
+
295
+ ### 14. Age Restrictions
296
+
297
+ You must be at least 18 years old (or the age of majority in your jurisdiction) to use TachiBot MCP, as you must be able to:
298
+ - Enter into binding contracts
299
+ - Manage API billing accounts
300
+ - Accept financial responsibility for usage
301
+
302
+ ### 15. Entire Agreement
303
+
304
+ These terms constitute the entire agreement between you and the creators of TachiBot MCP regarding use of the software. They supersede any prior agreements or understandings.
305
+
306
+ ### 16. Severability
307
+
308
+ If any provision of these terms is found to be unenforceable, the remaining provisions shall remain in full effect.
309
+
310
+ ### 17. No Waiver
311
+
312
+ Failure to enforce any provision of these terms shall not constitute a waiver of that provision.
313
+
314
+ ---
315
+
316
+ ## Acceptance of Terms
317
+
318
+ By using TachiBot MCP, you acknowledge that you have read, understood, and agree to be bound by these terms.
319
+
320
+ **If you do NOT agree to these terms, do NOT use TachiBot MCP.**
321
+
322
+ ---
323
+
324
+ ## Contact
325
+
326
+ For questions about these terms:
327
+ - **Email:** `tachibotmcp [at] gmail [dot] com`
328
+ - **GitHub Issues:** https://github.com/byPawel/tachibot-mcp/issues
329
+ - **GitHub Discussions:** https://github.com/byPawel/tachibot-mcp/discussions
330
+
331
+ **Note:** Contacting us does not create any obligation for us to respond or take action.
332
+
333
+ ---
334
+
335
+ ## Summary
336
+
337
+ **TL;DR:**
338
+ - ⚠️ **Author has NULL (ZERO) responsibility for ANYTHING**
339
+ - ⚠️ **You are 100% responsible for EVERYTHING**
340
+ - ✅ You pay 100% of all API costs - we pay 0%
341
+ - ✅ Use at your own risk - no warranty, no support
342
+ - ✅ Monitor your spending actively - unexpected costs are YOUR problem
343
+ - ✅ Verify all outputs - incorrect/harmful results are YOUR problem
344
+ - ✅ Don't misuse the software - consequences are YOUR problem
345
+ - ✅ Third-party services have their own terms - violations are YOUR problem
346
+ - ✅ We have ZERO liability for damages of any kind
347
+
348
+ **If you cannot accept 100% responsibility, DO NOT USE THIS SOFTWARE.**
349
+
350
+ ---
351
+
352
+ **BY USING TACHIBOT MCP, YOU ACCEPT THESE TERMS IN FULL.**