refactor: update repository URL and rebrand to Bandit Labs

- Update git remote to new Tailscale hostname
- Replace old organization name (hhl-infra) with bandit
- Replace old repository name (claude-code-hhl-toolkit) with support-claude-mktplace
- Update all documentation references to use generic gitea.example.com
- Rebrand from HyperHive Labs to Bandit Labs across all files
- Rename workspace file to match new repository name

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-09 11:51:13 -05:00
parent a31447e28f
commit ba599e342e
35 changed files with 658 additions and 142 deletions

View File

@@ -3,11 +3,11 @@
"version": "0.1.0",
"displayName": "Projman - Project Management for Claude Code",
"description": "Sprint planning and project management with Gitea and Wiki.js integration. Provides AI-guided sprint planning, issue creation with label taxonomy, and lessons learned capture.",
"author": "Hyper Hive Labs",
"homepage": "https://gitea.hotserv.cloud/hhl-infra/claude-code-hhl-toolkit",
"author": "Bandit Labs",
"homepage": "ssh://git@hotserv.tailc9b278.ts.net:2222/bandit/support-claude-mktplace",
"repository": {
"type": "git",
"url": "https://gitea.hotserv.cloud/hhl-infra/claude-code-hhl-toolkit.git"
"url": "ssh://git@hotserv.tailc9b278.ts.net:2222/bandit/support-claude-mktplace.git"
},
"license": "MIT",
"keywords": [

View File

@@ -90,7 +90,7 @@ python -c "from mcp_server import server; print('Wiki.js MCP Server installed su
### 2.1 Generate Gitea API Token
1. Log into Gitea: https://gitea.hotserv.cloud
1. Log into Gitea: https://gitea.example.com
2. Navigate to: **User Icon** (top right) → **Settings**
3. Click **Applications** tab
4. Scroll to **Manage Access Tokens**
@@ -145,9 +145,9 @@ mkdir -p ~/.config/claude
```bash
cat > ~/.config/claude/gitea.env << 'EOF'
# Gitea API Configuration
GITEA_API_URL=https://gitea.hotserv.cloud/api/v1
GITEA_API_URL=https://gitea.example.com/api/v1
GITEA_API_TOKEN=your_gitea_token_here
GITEA_OWNER=hhl-infra
GITEA_OWNER=bandit
EOF
# Secure the file (owner read/write only)
@@ -159,7 +159,7 @@ chmod 600 ~/.config/claude/gitea.env
**Configuration Variables:**
- `GITEA_API_URL` - Gitea API endpoint (includes `/api/v1`)
- `GITEA_API_TOKEN` - Personal access token from Step 2.1
- `GITEA_OWNER` - Organization or user name (e.g., `hhl-infra`)
- `GITEA_OWNER` - Organization or user name (e.g., `bandit`)
### 3.3 Configure Wiki.js
@@ -251,7 +251,7 @@ Test that everything is configured correctly:
```bash
# Test with curl
curl -H "Authorization: token YOUR_GITEA_TOKEN" \
https://gitea.hotserv.cloud/api/v1/user
https://gitea.example.com/api/v1/user
# Should return your user information in JSON format
```
@@ -313,9 +313,9 @@ This will:
**`~/.config/claude/gitea.env`:**
```bash
GITEA_API_URL=https://gitea.hotserv.cloud/api/v1
GITEA_API_URL=https://gitea.example.com/api/v1
GITEA_API_TOKEN=glpat-xxxxxxxxxxxxxxxxxxxxx
GITEA_OWNER=hhl-infra
GITEA_OWNER=bandit
```
**`~/.config/claude/wikijs.env`:**
@@ -417,7 +417,7 @@ ls -la ~/.config/claude/wikijs.env
```bash
# Test Gitea token
curl -H "Authorization: token YOUR_TOKEN" \
https://gitea.hotserv.cloud/api/v1/user
https://gitea.example.com/api/v1/user
# Test Wiki.js token
curl -H "Authorization: Bearer YOUR_TOKEN" \
@@ -515,7 +515,7 @@ After configuration is complete:
- Review MCP server documentation:
- [Gitea MCP](../mcp-servers/gitea/README.md)
- [Wiki.js MCP](../mcp-servers/wikijs/README.md)
- Open issue: https://gitea.hotserv.cloud/hhl-infra/claude-code-hhl-toolkit/issues
- Contact repository maintainer for support
**Questions:**
- Read command documentation: `commands/*.md`

View File

@@ -52,9 +52,9 @@ mkdir -p ~/.config/claude
# Gitea configuration
cat > ~/.config/claude/gitea.env << EOF
GITEA_API_URL=https://gitea.hotserv.cloud/api/v1
GITEA_API_URL=https://gitea.example.com/api/v1
GITEA_API_TOKEN=your_gitea_token_here
GITEA_OWNER=hhl-infra
GITEA_OWNER=bandit
EOF
# Wiki.js configuration
@@ -322,7 +322,7 @@ See [CONFIGURATION.md](./CONFIGURATION.md) for detailed configuration instructio
### Cannot connect to Gitea
- Verify `~/.config/claude/gitea.env` exists and has correct URL and token
- Test token: `curl -H "Authorization: token YOUR_TOKEN" https://gitea.hotserv.cloud/api/v1/user`
- Test token: `curl -H "Authorization: token YOUR_TOKEN" https://gitea.example.com/api/v1/user`
- Check network connectivity
### Cannot connect to Wiki.js
@@ -410,8 +410,8 @@ projman/
- [Wiki.js MCP Server](../mcp-servers/wikijs/README.md) - Wiki.js integration details
**Issues:**
- Report bugs: https://gitea.hotserv.cloud/hhl-infra/claude-code-hhl-toolkit/issues
- Feature requests: Same issue tracker
- Report bugs: Contact repository maintainer
- Feature requests: Contact repository maintainer
- Documentation improvements: Submit PR
## License
@@ -434,6 +434,6 @@ MIT License - See repository root for details
---
**Built for:** HyperHive Labs
**Built for:** Bandit Labs
**Status:** Phase 2 Complete - Commands ready for testing
**Next:** Implement agent system (Phase 3)

View File

@@ -105,7 +105,7 @@ The command updates `skills/label-taxonomy/labels-reference.md` with:
# Label Taxonomy Reference
Last synced: 2025-01-18 14:30 UTC
Source: Gitea (hhl-infra/cuisineflow)
Source: Gitea (bandit/your-repo-name)
## Organization Labels (28)

View File

@@ -7,7 +7,7 @@ description: Dynamic reference for Gitea label taxonomy (organization + reposito
**Status:** ✅ Synced with Gitea
**Last synced:** 2025-11-21 (via automated testing)
**Source:** Gitea (hhl-infra/claude-code-hhl-toolkit)
**Source:** Gitea (bandit/support-claude-mktplace)
## Overview
@@ -17,7 +17,7 @@ This skill provides the current label taxonomy used for issue classification in
## Organization Labels (27)
Organization-level labels are shared across all repositories in the `hhl-infra` organization.
Organization-level labels are shared across all repositories in the `bandit` organization.
### Agent (2)
- `Agent/Human` (#0052cc) - Work performed by human developers
@@ -62,7 +62,7 @@ Organization-level labels are shared across all repositories in the `hhl-infra`
## Repository Labels (16)
Repository-level labels are specific to the claude-code-hhl-toolkit project.
Repository-level labels are specific to each project.
### Component (9)
- `Component/Backend` (#5319e7) - Backend service code and business logic