Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -322,3 +322,4 @@ secrets.*
!CODE_OF_CONDUCT.md
!SECURITY.md
!HUMMBL_Unified_Tier_Framework_v1.0.md
lint-results.txt
18 changes: 18 additions & 0 deletions .markdownlint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"default": true,
"MD013": false,
"MD033": false,
"MD041": false,
"MD032": {
"severity": "warning"
},
"MD034": {
"severity": "error"
},
"MD036": {
"severity": "warning"
},
"MD040": {
"severity": "error"
}
}
24 changes: 12 additions & 12 deletions github-repository-architect/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ date-released: 2025-11-01
### Phase 3: Issue & PR Templates (30 min)

**Directory Structure:**
```
```text
.github/
├── ISSUE_TEMPLATE/
│ ├── bug_report.md
Expand Down Expand Up @@ -308,7 +308,7 @@ Closes #(issue number)
```

**CODEOWNERS (.github/CODEOWNERS):**
```
```text
# Global owners
* @organization/maintainers

Expand Down Expand Up @@ -471,7 +471,7 @@ jobs:
**Option 1: Docsify (Recommended for simplicity)**

1. Create `docs/` directory structure:
```
```text
docs/
├── index.html (Docsify config)
├── README.md (Home page)
Expand Down Expand Up @@ -602,7 +602,7 @@ markdown: kramdown
## Best Practices

### Branch Protection Rules
```
```text
Settings → Branches → Add rule

Branch name pattern: main
Expand All @@ -619,7 +619,7 @@ Protection settings:
```

### Semantic Versioning
```
```text
MAJOR.MINOR.PATCH (e.g., 2.1.3)

MAJOR: Breaking changes
Expand All @@ -631,7 +631,7 @@ Build metadata: 1.0.0+20130313144700
```

### Commit Message Convention
```
```text
<type>(<scope>): <subject>

<body>
Expand Down Expand Up @@ -700,12 +700,12 @@ gh release create v1.2.0 --title "v1.2.0" --notes-file RELEASE_NOTES.md

## Resources

- **GitHub Docs**: https://docs.github.com
- **Keep a Changelog**: https://keepachangelog.com
- **Semantic Versioning**: https://semver.org
- **Contributor Covenant**: https://www.contributor-covenant.org
- **Citation File Format**: https://citation-file-format.github.io
- **GitHub Actions Marketplace**: https://github.com/marketplace?type=actions
- **GitHub Docs**: <https://docs.github.com>
- **Keep a Changelog**: <https://keepachangelog.com>
- **Semantic Versioning**: <https://semver.org>
- **Contributor Covenant**: <https://www.contributor-covenant.org>
- **Citation File Format**: <https://citation-file-format.github.io>
- **GitHub Actions Marketplace**: <https://github.com/marketplace?type=actions>

## Success Criteria

Expand Down
12 changes: 7 additions & 5 deletions mcp-server-developer/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,8 @@ Expert implementation of Model Context Protocol (MCP) servers for Claude Desktop

3. Test in Claude:
"Use the perspective transformation on this problem: [your problem]"
```text
(Expected: Structured analysis from multiple stakeholder perspectives)
```

2. **Runnable Examples**
Expand Down Expand Up @@ -404,11 +406,11 @@ logTelemetry({

## Resources

- **MCP Specification**: https://spec.modelcontextprotocol.io/
- **MCP SDK**: https://github.com/modelcontextprotocol/typescript-sdk
- **Claude Desktop Config**: https://docs.claude.com/en/docs/agents-and-tools/agent-skills
- **TypeScript Best Practices**: https://typescript-lang.org/docs/handbook/intro.html
- **NPM Publishing Guide**: https://docs.npmjs.com/packages-and-modules/contributing-packages-to-the-registry
- **MCP Specification**: <https://spec.modelcontextprotocol.io/>
- **MCP SDK**: <https://github.com/modelcontextprotocol/typescript-sdk>
- **Claude Desktop Config**: <https://docs.claude.com/en/docs/agents-and-tools/agent-skills>
- **TypeScript Best Practices**: <https://typescript-lang.org/docs/handbook/intro.html>
- **NPM Publishing Guide**: <https://docs.npmjs.com/packages-and-modules/contributing-packages-to-the-registry>

## Success Criteria

Expand Down
10 changes: 5 additions & 5 deletions sitrep-coordinator/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ Options:

### Authorization Code Format

```
```text
[PROJECT]-[PHASE]-[AGENT]-[SEQUENCE]

Examples:
Expand Down Expand Up @@ -243,7 +243,7 @@ UNIFIED-TIER-CLAUDE-DESK-012
### Pattern 1: Sequential Handoff
**Use Case:** Tasks that must be completed in order

```
```text
Agent A → SITREP → Agent B → SITREP → Agent C
```

Expand All @@ -256,7 +256,7 @@ Agent A → SITREP → Agent B → SITREP → Agent C
### Pattern 2: Parallel Execution
**Use Case:** Independent tasks executed simultaneously

```
```text
Coordinator → SITREP → Agent A
→ Agent B
→ Agent C
Expand All @@ -273,7 +273,7 @@ Coordinator → SITREP → Agent A
### Pattern 3: Iterative Refinement
**Use Case:** Multiple passes for quality improvement

```
```text
Agent A → SITREP → Agent B (Review)
↑ ↓
└────── Iterate ─────┘
Expand All @@ -288,7 +288,7 @@ Agent A → SITREP → Agent B (Review)
### Pattern 4: Escalation Chain
**Use Case:** Decision authority hierarchy

```
```text
Agent A → Blocker → SITREP → Team Lead
SITREP → Executive
Expand Down
2 changes: 1 addition & 1 deletion transformation-workflow/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ The 6 HUMMBL transformations represent different cognitive operations:

## Transformation Selection Flowchart

```
```text
START: What's your primary need?

├─ "Understand the problem"
Expand Down
Loading