{"id":21423270,"url":"https://github.com/octokas/go-kas","last_synced_at":"2026-05-05T00:31:29.705Z","repository":{"id":263499607,"uuid":"889214872","full_name":"octokas/go-kas","owner":"octokas","description":"Go project that started as a way to create a template library for myself, but grew to be the backbone of \"Pagey's PagerMate\"","archived":false,"fork":false,"pushed_at":"2024-12-11T22:56:19.000Z","size":221,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"trunk","last_synced_at":"2026-04-17T00:38:07.014Z","etag":null,"topics":["ai","go","go-ai","go-air","go-library","golang","mongodb","pagerduty","pagermate","pagey","rag","template","vectorstore"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/octokas.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"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":"2024-11-15T20:46:53.000Z","updated_at":"2024-11-21T01:56:24.000Z","dependencies_parsed_at":"2024-11-18T22:36:35.581Z","dependency_job_id":"2f6f7d44-d703-485d-8038-cf3d154efdd7","html_url":"https://github.com/octokas/go-kas","commit_stats":null,"previous_names":["octokas/go-ai","octokas/go-kas"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/octokas/go-kas","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/octokas%2Fgo-kas","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/octokas%2Fgo-kas/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/octokas%2Fgo-kas/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/octokas%2Fgo-kas/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/octokas","download_url":"https://codeload.github.com/octokas/go-kas/tar.gz/refs/heads/trunk","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/octokas%2Fgo-kas/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32631051,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-04T10:08:07.713Z","status":"ssl_error","status_checked_at":"2026-05-04T10:08:02.005Z","response_time":58,"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":["ai","go","go-ai","go-air","go-library","golang","mongodb","pagerduty","pagermate","pagey","rag","template","vectorstore"],"created_at":"2024-11-22T21:15:28.448Z","updated_at":"2026-05-05T00:31:29.685Z","avatar_url":"https://github.com/octokas.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Design System Documentation\n\n## Foundations\n\n### Color System\nWe blend Apple's clean aesthetic with Monokai Pro's rich color palette:\n\n```scss\n// Light Mode (Apple-inspired)\n--color-background: #ffffff        // Primary background\n--color-surface: #f5f5f7          // Secondary background\n--color-primary: #0071e3          // Primary actions\n--color-text: #1d1d1f             // Primary text\n--color-text-secondary: #86868b    // Secondary text\n\n// Dark Mode (Monokai Pro-inspired)\n--color-background-dark: #2d2a2e   // Primary background\n--color-surface-dark: #363537      // Secondary background\n--color-primary-dark: #78dce8      // Primary actions\n--color-text-dark: #fcfcfa        // Primary text\n--color-accent: {\n  green: #a9dc76,                 // Success states\n  yellow: #ffd866,                // Warning states\n  orange: #fc9867,                // Alert states\n  purple: #ab9df2,                // Info states\n  red: #ff6188                    // Error states\n}\n```\n\n### Typography\nFollowing Apple's SF Pro family:\n\n```scss\n// Font Families\n--font-sf-pro: \"SF Pro Text\"\n--font-sf-pro-display: \"SF Pro Display\"\n--font-sf-mono: \"SF Mono\"\n\n// Type Scale (Apple-standard)\n--text-xs: 11px    // Labels, badges\n--text-sm: 13px    // Secondary text\n--text-base: 15px  // Body text\n--text-lg: 17px    // Emphasized body\n--text-xl: 20px    // Subheadings\n--text-2xl: 24px   // Section headers\n--text-3xl: 28px   // Page titles\n--text-4xl: 34px   // Hero text\n```\n\n### Motion\nApple-inspired spring animations:\n\n```scss\n// Timing Functions\n--ease-smooth: cubic-bezier(0.2, 0, 0.38, 0.9)\n--ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55)\n\n// Duration Scale\n--duration-instant: 100ms  // Micro-interactions\n--duration-fast: 150ms    // Button states\n--duration-moderate: 200ms // Component transitions\n--duration-slow: 300ms    // Page transitions\n```\n\n## Component Naming Conventions\n\n### Structure\n- Component wrapper: `[component-name]`\n- Component elements: `[component-name]-[element]`\n- Component modifiers: `[component-name]--[modifier]`\n- State classes: `is-[state]` or `has-[state]`\n\nExample:\n```html\n\u003cdiv class=\"card\"\u003e\n  \u003cdiv class=\"card-header\"\u003e\n    \u003ch3 class=\"card-title\"\u003eTitle\u003c/h3\u003e\n  \u003c/div\u003e\n  \u003cdiv class=\"card-content\"\u003e\n    \u003c!-- Content --\u003e\n  \u003c/div\u003e\n\u003c/div\u003e\n```\n\n### State Classes\n```scss\n.is-active      // Current/selected state\n.is-disabled    // Disabled state\n.is-loading     // Loading state\n.is-error       // Error state\n.has-error      // Contains an error\n.has-icon       // Contains an icon\n```\n\n## File Structure\n```\ndesign-system/\n├── foundations/\n│   ├── colors/\n│   │   ├── _variables.scss\n│   │   ├── _light.scss\n│   │   └── _dark.scss\n│   ├── typography/\n│   │   └── _scale.scss\n│   └── motion/\n│       └── _spring.scss\n├── components/\n│   ├── core/\n│   │   ├── _buttons.scss\n│   │   └── _cards.scss\n│   └── patterns/\n│       ├── _navigation.scss\n│       └── _forms.scss\n└── themes/\n    ├── light.scss\n    └── dark.scss\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foctokas%2Fgo-kas","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foctokas%2Fgo-kas","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foctokas%2Fgo-kas/lists"}