Skip to content
Merged
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
28 changes: 14 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

Part of [Forge Space](https://github.com/Forge-Space) — the open full-stack AI workspace. This repo provides the foundation that all other Forge Space projects build on: code quality standards, security framework, CI/CD workflows, and a local MCP context server for IDE integration.

**Version 1.2.0**

## Overview

Expand All @@ -26,9 +25,11 @@ Forge-Space Core provides shared configurations, workflows, and architectural pa

## 📋 Projects Using These Patterns

- **mcp-gateway**: Python/Node.js MCP gateway with comprehensive CI/CD
- **forge-space-ui**: Next.js web application with multi-environment deployment
- **forge-space-mcp**: Node.js MCP server with security-focused workflows
- **[siza](https://github.com/Forge-Space/siza)**: Next.js web application with multi-environment deployment
- **[siza-mcp](https://github.com/Forge-Space/ui-mcp)**: MCP server for AI-powered UI generation
- **[mcp-gateway](https://github.com/Forge-Space/mcp-gateway)**: Python/Node.js MCP gateway with comprehensive CI/CD
- **[branding-mcp](https://github.com/Forge-Space/branding-mcp)**: AI-powered brand identity generation
- **[siza-gen](https://github.com/Forge-Space/siza-gen)**: AI generation engine with component registry

## 🌐 Ecosystem Integration

Expand All @@ -40,14 +41,13 @@ This core repository provides the foundation for the entire Forge Space ecosyste
- **📊 Quality Gates**: Standardized testing and quality requirements

**Related Projects:**
- [**Forge Space - UI**](../uiforge-webapp/) - AI-powered UI generation platform
- [**MCP Gateway**](../mcp-gateway/) - Central tool aggregation and routing
- [**Forge Space - UI MCP**](../uiforge-mcp/) - Specialized UI development tools
- [**Siza**](https://github.com/Forge-Space/siza) - AI-powered full-stack workspace
- [**MCP Gateway**](https://github.com/Forge-Space/mcp-gateway) - Central tool aggregation and routing
- [**Siza MCP**](https://github.com/Forge-Space/ui-mcp) - MCP server for UI generation
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

Critical: Same URL mismatch for Siza MCP.

The same issue as Line 29 - "Siza MCP" links to ui-mcp instead of siza-mcp.

🔗 Proposed fix for the URL
-- [**Siza MCP**](https://github.com/Forge-Space/ui-mcp) - MCP server for UI generation
+- [**Siza MCP**](https://github.com/Forge-Space/siza-mcp) - MCP server for UI generation
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
- [**Siza MCP**](https://github.com/Forge-Space/ui-mcp) - MCP server for UI generation
- [**Siza MCP**](https://github.com/Forge-Space/siza-mcp) - MCP server for UI generation
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@README.md` at line 46, The "Siza MCP" README link text ([**Siza MCP**])
currently points to the wrong repository (ui-mcp); update the markdown link
target to the correct repo name (siza-mcp) so the link becomes the siza-mcp URL,
mirroring the fix applied at the earlier occurrence; locate the "[**Siza MCP**]"
entry and replace its href to use "siza-mcp" instead of "ui-mcp".


**Documentation:**
- [**Ecosystem Overview**](../../ECOSYSTEM_OVERVIEW.md) - Complete ecosystem guide
- [**Integration Guide**](../../docs/ecosystem/INTEGRATION_GUIDE.md) - Step-by-step integration instructions
- [**Architecture Diagrams**](../../docs/ecosystem/ARCHITECTURE_DIAGRAM.md) - Visual architecture reference
- [**Documentation Hub**](docs/README.md) - Complete documentation
- [**Project Context**](docs/project/PROJECT_CONTEXT.MD) - Project guide and context

## � GitHub Workflows Optimization

Expand Down Expand Up @@ -115,7 +115,7 @@ For complete documentation, see our **[Documentation Hub](docs/README.md)** whic
### 1. Install Forge Patterns

```bash
npm install @uiforge/forge-patterns
npm install @forgespace/core
```

### 2. Integrate into Your Project
Expand All @@ -128,15 +128,15 @@ npx forge-patterns integrate

# Or use individual integration commands
npx forge-patterns integrate --project=mcp-gateway
npx forge-patterns integrate --project=uiforge-mcp
npx forge-patterns integrate --project=uiforge-webapp
npx forge-patterns integrate --project=siza-mcp
npx forge-patterns integrate --project=siza
```

## 📁 Repository Structure

```bash

uiforge-patterns/
forge-patterns/
├── .github/
│ ├── workflows/ # CI/CD workflow templates
│ └── templates/ # GitHub templates (PR, issues)
Expand Down
Loading