You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: Add comprehensive fallback mechanism and version tracking (#6)
- Add fallback guidance for MCP server unavailability
- Add published versions tracking (PyPI/MCP Registry → git tags)
- Enhance CLAUDE-template.md with 7 practice summaries
- Add cross-references between README, MIGRATION-GUIDE, CLAUDE-template
- Add troubleshooting section for MCP server failures
Fallback options:
- GitHub practices (primary)
- Local clone access (offline)
- CLAUDE.md appendix (emergency)
Version tracking:
- Link PyPI/MCP Registry v1.4.0 to git tag v1.4.0 (34ca572)
- Show latest development vs published versions
Co-authored-by: Uttam Jaiswal <uttam.jaiswal@skill-mine.com>
**Status**: 🎉 **Officially Published** in the [MCP Registry](https://registry.modelcontextprotocol.io/?search=devops-practices) (Published: February 18, 2026)
18
18
19
+
**Published Versions:**
20
+
- 📦 **PyPI**: [v1.4.0](https://pypi.org/project/devops-practices-mcp/1.4.0/) → Git tag [v1.4.0](https://github.com/ai-4-devops/devops-practices/releases/tag/v1.4.0) (`34ca572`)
21
+
- 🌐 **MCP Registry**: v1.4.0 → Git tag [v1.4.0](https://github.com/ai-4-devops/devops-practices/releases/tag/v1.4.0) (`34ca572`)
22
+
- 🚀 **Latest Development**: [main branch](https://github.com/ai-4-devops/devops-practices) (may include unreleased features)
23
+
19
24
---
20
25
21
26
> **Who is this for?** DevOps engineers using **Claude Code (VS Code plugin)** for PoC development.
@@ -81,6 +86,7 @@ When searching "devops" in the MCP Registry (as of February 2026), this is the o
81
86
- ✅ **Background**: Runs silently while you work
82
87
- ✅ **On-demand**: Claude queries practices as needed
83
88
- ✅ **Auto-stop**: Shuts down when Claude closes
89
+
- ✅ **Fallback**: Access practices via GitHub/local if MCP unavailable (see [Troubleshooting](#mcp-server-is-down-or-unavailable))
84
90
85
91
**Configuration Options:**
86
92
@@ -329,15 +335,23 @@ Claude has access to shared DevOps practices via MCP:
329
335
- Git best practices
330
336
- Efficiency guidelines
331
337
338
+
⚠️ Fallback: If MCP unavailable, see Appendix or GitHub practices
339
+
332
340
## Project-Specific: [Project Details]
333
341
[Only project-specific instructions here]
342
+
343
+
## Appendix: Critical Practices (Fallback)
344
+
[Emergency practice summaries if MCP down - see CLAUDE-template.md]
334
345
```
335
346
336
347
### Benefits
337
348
-**DRY**: Shared practices written once, used everywhere
338
349
-**Consistency**: All projects follow same standards
339
350
-**Maintainability**: Update once, all projects benefit
340
351
-**Discoverability**: Claude can query practices when needed
352
+
-**Resilient**: Fallback to GitHub/local/appendix if MCP unavailable
353
+
354
+
**Template:** See [CLAUDE-template.md](templates/CLAUDE-template.md) for full structure including fallback appendix
Copy file name to clipboardExpand all lines: templates/CLAUDE-template.md
+95-8Lines changed: 95 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ Claude has access to shared DevOps practices via MCP service. Query practices wh
12
12
-**Git practices** - Using `git mv`, commit conventions, backup protocols
13
13
-**Efficiency guidelines** - When to script vs copy-paste, command batching
14
14
15
-
**⚠️ Fallback**: If MCP unavailable, critical practices are duplicated below in Appendix.
15
+
**⚠️ Fallback**: If MCP unavailable, critical practices are in Appendix below + [GitHub practices](https://github.com/ai-4-devops/devops-practices/tree/main/practices)
16
16
17
17
---
18
18
@@ -63,23 +63,110 @@ You are my **expert ${ROLE}**. You bring deep expertise in ${EXPERTISE_AREAS}.
63
63
64
64
## Appendix: Critical Practices (Fallback if MCP Unavailable)
65
65
66
-
### Air-Gapped Workflow (Summary)
66
+
**📚 Full Practices**: If MCP server is down, access complete practices at:
0 commit comments