{"id":35878481,"url":"https://github.com/ionos-cloud/archsight","last_synced_at":"2026-04-30T22:01:00.862Z","repository":{"id":332416701,"uuid":"1129752764","full_name":"ionos-cloud/archsight","owner":"ionos-cloud","description":"Bringing enterprise architecture into focus.","archived":false,"fork":false,"pushed_at":"2026-04-29T05:30:50.000Z","size":4002,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-29T07:16:01.321Z","etag":null,"topics":["archimate","architecture","togaf"],"latest_commit_sha":null,"homepage":"","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ionos-cloud.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.txt","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-07T14:34:50.000Z","updated_at":"2026-04-29T05:30:52.000Z","dependencies_parsed_at":"2026-02-17T14:08:17.177Z","dependency_job_id":null,"html_url":"https://github.com/ionos-cloud/archsight","commit_stats":null,"previous_names":["ionos-cloud/archsight"],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/ionos-cloud/archsight","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ionos-cloud%2Farchsight","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ionos-cloud%2Farchsight/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ionos-cloud%2Farchsight/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ionos-cloud%2Farchsight/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ionos-cloud","download_url":"https://codeload.github.com/ionos-cloud/archsight/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ionos-cloud%2Farchsight/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32478162,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"ssl_error","status_checked_at":"2026-04-30T13:12:06.837Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["archimate","architecture","togaf"],"created_at":"2026-01-08T17:21:33.881Z","updated_at":"2026-04-30T22:01:00.853Z","avatar_url":"https://github.com/ionos-cloud.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Archsight\n\n[![CI](https://github.com/ionos-cloud/archsight/actions/workflows/ci.yml/badge.svg)](https://github.com/ionos-cloud/archsight/actions/workflows/ci.yml)\n[![Gem Version](https://badge.fury.io/rb/archsight.svg)](https://badge.fury.io/rb/archsight)\n\n*Bringing enterprise architecture into focus.*\n\nRuby gem for visualizing and managing enterprise architecture documentation using YAML resources with GraphViz visualization. Inspired by ArchiMate 3.2.\n\n| Service view | Artifact view |\n|:---:|:---:|\n| ![Service detail with graph and relations](media/service.jpg) | ![Artifact detail with metadata](media/artifact.jpg) |\n\n## Installation\n\nAdd to your Gemfile:\n\n```ruby\ngem 'archsight'\n```\n\nOr install directly:\n\n```bash\ngem install archsight\n```\n\n## Quick Start\n\n```bash\n# Start web server (looks for resources in current directory)\narchsight web\n\n# Start with custom resources path\narchsight web --resources /path/to/resources\n\n# Or use environment variable\nARCHSIGHT_RESOURCES_DIR=/path/to/resources archsight web\n```\n\nAccess at: \u003chttp://localhost:4567\u003e\n\nAlso available as [Docker](docs/docker.md) image and [Helm chart](docs/kubernetes.md).\n\n## CLI Commands\n\n```bash\narchsight web [OPTIONS]      # Start web server\narchsight lint               # Validate YAML and relations\narchsight import             # Execute pending imports\narchsight analyze            # Execute analysis scripts\narchsight template KIND      # Generate YAML template for a resource type\narchsight console            # Interactive Ruby console\narchsight version            # Show version\n```\n\n### Web Server Options\n\n```bash\narchsight web [--resources PATH] [--port PORT] [--host HOST]\n              [--production] [--disable-reload] [--enable-logging]\n              [--inline-edit]\n```\n\n| Option | Description |\n|--------|-------------|\n| `-r, --resources PATH` | Path to resources directory |\n| `-p, --port PORT` | Port to listen on (default: 4567) |\n| `-H, --host HOST` | Host to bind to (default: localhost) |\n| `--production` | Run in production mode (quiet startup) |\n| `--disable-reload` | Disable the reload button in the UI |\n| `--enable-logging` | Enable request logging (default: false in dev, true in prod) |\n| `--inline-edit` | Enable inline editing to save directly to source files |\n\n## Features\n\n### MCP Server\n\nThe tool includes an MCP (Model Context Protocol) server that enables AI assistants to query and analyze the architecture data programmatically.\n\n**Start the server:**\n\n```bash\narchsight web\n```\n\n**Add to Claude Code:**\n\n```bash\nclaude mcp add --transport sse ionos-architecture http://localhost:4567/mcp/sse\n```\n\n**Available tools:**\n\n- `query` - Search and filter resources using the query language\n- `analyze_resource` - Get detailed resource information and impact analysis\n- `resource_doc` - Get documentation for resource kinds\n\n### Web Interface\n\n**Browse \u0026 Search:**\n\n- Browse resources by type (Products, Services, Components, Requirements, etc.)\n- Search by name or tag using the [query language](docs/search.md)\n- Filter by annotations (quality attributes, status, frameworks)\n\n**Visualization:**\n\n- Interactive GraphViz diagrams showing relationships\n- Zoom/pan controls for large diagrams\n- Dark mode support\n- Layer-based color scheme (Business, Application, Technology, Data)\n\n### Resource Editor\n\nCreate and edit resources through the web interface:\n\n**Edit existing resource:**\n\n- Navigate to any resource detail page\n- Click the \"Edit\" button (only available for non-generated resources)\n- Modify annotations and relations\n- Generate YAML and copy to clipboard\n\n**Create new resource:**\n\n- Go to any kind listing (e.g., /kinds/ApplicationComponent)\n- Click \"New\" button\n- Fill in required fields\n- Add relations using cascading dropdowns\n- Generate YAML and copy to clipboard\n\nThe editor supports:\n\n- Type-aware form fields (dropdowns for enums, number inputs, URL validation)\n- Markdown textarea for descriptions\n- Relation management with cascading dropdowns\n- Validation before YAML generation\n- One-click copy to clipboard\n\n### Validation\n\nValidate YAML syntax and verify all relationship references:\n\n```bash\narchsight lint\n```\n\n**Checks:**\n\n- YAML syntax correctness\n- Resource kind definitions exist\n- All relation references point to existing resources\n- Prevents broken links between resources\n\n## Documentation\n\nDetailed documentation is available in the web interface under the Help menu:\n\n| Guide | Description |\n|-------|-------------|\n| [Modeling Guide](docs/modeling.md) | How to model architecture using resource types and relations |\n| [Query Language](docs/search.md) | Full query syntax reference for searching resources |\n| [Computed Annotations](docs/computed_annotations.md) | Aggregating values across relations |\n| [ArchiMate Reference](docs/archimate.md) | ArchiMate concepts and mapping |\n| [TOGAF Reference](docs/togaf.md) | TOGAF alignment and concepts |\n| [Architecture](docs/architecture.md) | Technology stack and directory structure |\n| [Docker](docs/docker.md) | Running Archsight in Docker |\n| [Kubernetes](docs/kubernetes.md) | Helm chart deployment guide |\n\n## Architecture\n\nSee [Architecture](docs/architecture.md) for the technology stack and directory structure.\n\n## Contributing\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md) for development setup, code style guidelines, and pull request process.\n\n## License\n\nApache 2.0 License. See LICENSE.txt for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fionos-cloud%2Farchsight","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fionos-cloud%2Farchsight","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fionos-cloud%2Farchsight/lists"}