chore: import upstream snapshot with attribution
Test Vector Database Adaptors / Test MCP Vector DB Tools (push) Has been cancelled
Tests / Code Quality (Ruff & Mypy) (push) Has been cancelled
Tests / Fast Unit Tests (parallel) (macos-latest, 3.11) (push) Has been cancelled
Tests / Fast Unit Tests (parallel) (macos-latest, 3.12) (push) Has been cancelled
Tests / Tests (push) Has been cancelled
Docker Publish / Build and Push Docker Images (map[description:Skill Seekers CLI - Convert documentation to AI skills dockerfile:Dockerfile name:skill-seekers]) (push) Has been cancelled
Docker Publish / Build and Push Docker Images (map[description:Skill Seekers MCP Server - 25 tools for AI assistants dockerfile:Dockerfile.mcp name:skill-seekers-mcp]) (push) Has been cancelled
Docker Publish / Test Docker Images (push) Has been cancelled
Tests / Fast Unit Tests (parallel) (ubuntu-latest, 3.10) (push) Has been cancelled
Tests / Fast Unit Tests (parallel) (ubuntu-latest, 3.11) (push) Has been cancelled
Tests / Fast Unit Tests (parallel) (ubuntu-latest, 3.12) (push) Has been cancelled
Tests / Serial / Integration / E2E Tests (push) Has been cancelled
Tests / MCP Server Tests (push) Has been cancelled
Test Vector Database Adaptors / Test chroma Adaptor (push) Has been cancelled
Test Vector Database Adaptors / Test faiss Adaptor (push) Has been cancelled
Test Vector Database Adaptors / Test qdrant Adaptor (push) Has been cancelled
Test Vector Database Adaptors / Test weaviate Adaptor (push) Has been cancelled
Test Vector Database Adaptors / Test MCP Vector DB Tools (push) Has been cancelled
Tests / Code Quality (Ruff & Mypy) (push) Has been cancelled
Tests / Fast Unit Tests (parallel) (macos-latest, 3.11) (push) Has been cancelled
Tests / Fast Unit Tests (parallel) (macos-latest, 3.12) (push) Has been cancelled
Tests / Tests (push) Has been cancelled
Docker Publish / Build and Push Docker Images (map[description:Skill Seekers CLI - Convert documentation to AI skills dockerfile:Dockerfile name:skill-seekers]) (push) Has been cancelled
Docker Publish / Build and Push Docker Images (map[description:Skill Seekers MCP Server - 25 tools for AI assistants dockerfile:Dockerfile.mcp name:skill-seekers-mcp]) (push) Has been cancelled
Docker Publish / Test Docker Images (push) Has been cancelled
Tests / Fast Unit Tests (parallel) (ubuntu-latest, 3.10) (push) Has been cancelled
Tests / Fast Unit Tests (parallel) (ubuntu-latest, 3.11) (push) Has been cancelled
Tests / Fast Unit Tests (parallel) (ubuntu-latest, 3.12) (push) Has been cancelled
Tests / Serial / Integration / E2E Tests (push) Has been cancelled
Tests / MCP Server Tests (push) Has been cancelled
Test Vector Database Adaptors / Test chroma Adaptor (push) Has been cancelled
Test Vector Database Adaptors / Test faiss Adaptor (push) Has been cancelled
Test Vector Database Adaptors / Test qdrant Adaptor (push) Has been cancelled
Test Vector Database Adaptors / Test weaviate Adaptor (push) Has been cancelled
This commit is contained in:
Executable
+43
@@ -0,0 +1,43 @@
|
||||
#!/bin/bash
|
||||
# Script to create GitHub issues via web browser
|
||||
# Since gh CLI is not available, we'll open browser to create issues
|
||||
|
||||
REPO="yusufkaraaslan/Skill_Seekers"
|
||||
BASE_URL="https://github.com/${REPO}/issues/new"
|
||||
|
||||
echo "🚀 Creating GitHub Issues for Skill Seeker MCP Development"
|
||||
echo "=========================================================="
|
||||
echo ""
|
||||
echo "Opening browser to create issues..."
|
||||
echo "Please copy the content from .github/ISSUES_TO_CREATE.md"
|
||||
echo ""
|
||||
|
||||
# Issue 1: Fix test failures
|
||||
echo "📝 Issue 1: Fix 3 test failures"
|
||||
echo "URL: ${BASE_URL}?labels=bug,tests,good+first+issue&title=Fix+3+test+failures+(warnings+vs+errors+handling)"
|
||||
echo ""
|
||||
|
||||
# Issue 2: MCP setup guide
|
||||
echo "📝 Issue 2: Create MCP setup guide"
|
||||
echo "URL: ${BASE_URL}?labels=documentation,mcp,enhancement&title=Create+comprehensive+MCP+setup+guide+for+Claude+Code"
|
||||
echo ""
|
||||
|
||||
# Issue 3: Test MCP server
|
||||
echo "📝 Issue 3: Test MCP server"
|
||||
echo "URL: ${BASE_URL}?labels=testing,mcp,priority-high&title=Test+MCP+server+with+actual+Claude+Code+instance"
|
||||
echo ""
|
||||
|
||||
# Issue 4: Update documentation
|
||||
echo "📝 Issue 4: Update documentation"
|
||||
echo "URL: ${BASE_URL}?labels=documentation,breaking-change&title=Update+all+documentation+for+new+monorepo+structure"
|
||||
echo ""
|
||||
|
||||
echo "=========================================================="
|
||||
echo "📋 Instructions:"
|
||||
echo "1. Click each URL above (or copy to browser)"
|
||||
echo "2. Copy the issue body from .github/ISSUES_TO_CREATE.md"
|
||||
echo "3. Paste into the issue description"
|
||||
echo "4. Click 'Submit new issue'"
|
||||
echo ""
|
||||
echo "Or use this quick link to view all templates:"
|
||||
echo "cat .github/ISSUES_TO_CREATE.md"
|
||||
Reference in New Issue
Block a user