{"id":23305955,"url":"https://github.com/kingstinct/.github","last_synced_at":"2026-02-12T10:31:33.068Z","repository":{"id":264907374,"uuid":"882646114","full_name":"kingstinct/.github","owner":"kingstinct","description":null,"archived":false,"fork":false,"pushed_at":"2026-02-11T07:00:20.000Z","size":125,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-11T10:08:53.054Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/kingstinct.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-03T11:39:10.000Z","updated_at":"2026-02-11T07:00:23.000Z","dependencies_parsed_at":"2024-11-27T04:45:40.936Z","dependency_job_id":null,"html_url":"https://github.com/kingstinct/.github","commit_stats":null,"previous_names":["kingstinct/.github"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kingstinct/.github","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kingstinct%2F.github","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kingstinct%2F.github/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kingstinct%2F.github/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kingstinct%2F.github/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kingstinct","download_url":"https://codeload.github.com/kingstinct/.github/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kingstinct%2F.github/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29363152,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-12T08:51:36.827Z","status":"ssl_error","status_checked_at":"2026-02-12T08:51:26.849Z","response_time":55,"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":[],"created_at":"2024-12-20T12:14:54.808Z","updated_at":"2026-02-12T10:31:33.063Z","avatar_url":"https://github.com/kingstinct.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Kingstinct Organization-Wide GitHub Configuration\n\nThis repository contains shared GitHub Actions, workflow templates, and organization-wide configurations for the Kingstinct organization.\n\n## Claude Code Skills Marketplace\n\nThis repo hosts a Claude Code skills marketplace with curated plugins for Expo, React Native, SQL, and document processing.\n\n### Installation\n\n```bash\n# Add the marketplace\n/plugin marketplace add kingstinct/.github/skills\n\n# Install the plugins you need\n/plugin install expo-skills@kingstinct-skills\n/plugin install callstack-skills@kingstinct-skills\n/plugin install anthropic-skills@kingstinct-skills\n/plugin install kysely-sql@kingstinct-skills\n/plugin install planning@kingstinct-skills\n/plugin install typescript@kingstinct-skills\n/plugin install biome@kingstinct-skills\n/plugin install general@kingstinct-skills\n/plugin install bun@kingstinct-skills\n```\n\n### Available Plugins\n\n#### External Plugins\n\n| Plugin | Source | Description |\n|--------|--------|-------------|\n| `expo-skills` | [expo/skills](https://github.com/expo/skills) | App design, SDK upgrades, and deployment to App Store/Play Store/web |\n| `callstack-skills` | [callstackincubator/agent-skills](https://github.com/callstackincubator/agent-skills) | React Native best practices, performance optimization, and GitHub workflows |\n| `anthropic-skills` | [anthropics/skills](https://github.com/anthropics/skills) | Document processing (Excel, Word, PowerPoint, PDF) and example skills |\n\n#### Kingstinct Plugins\n\n| Plugin | Description | Hooks |\n|--------|-------------|-------|\n| `kysely-sql` | SQL with Kysely (expo-sqlite / bun:sqlite) | - |\n| `planning` | MVP-style planning with issue context and test strategies | - |\n| `typescript` | Strict TypeScript best practices | `bun run typecheck` on Edit/Write |\n| `biome` | Auto-format and lint with Biome | `biome check --fix` on Edit/Write |\n| `bun` | Bun setup: install version from .bun-version/package.json/.env.github, run codegen | SessionStart |\n| `general` | Git commands, Linear integration, Pushover notifications | Session hooks + /commit, /push, /amend, /start-linear-task |\n\n### Updating\n\n```bash\n/plugin marketplace update kingstinct-skills\n```\n\nUpdates are pulled automatically from the upstream sources.\n\n## Reusable Actions\n\nThe following composite actions are available for use across all repositories in the organization:\n\n### Docker Build and Push\n\nBuilds a Docker image and pushes it to GitHub Container Registry.\n\n```yaml\n- uses: kingstinct/.github/actions/docker-build@main\n  with:\n    github-token: ${{ secrets.GITHUB_TOKEN }}\n    image-name: 'ghcr.io/kingstinct/my-app'  # optional\n    build-args: 'ARG1=value1'                 # optional\n    context: '.'                              # optional\n    dockerfile: 'Dockerfile'                  # optional\n```\n\n### CapRover Deploy\n\nDeploys a Docker image to CapRover.\n\n```yaml\n- uses: kingstinct/.github/actions/caprover-deploy@main\n  with:\n    caprover-url: ${{ secrets.CAPROVER_URL }}\n    caprover-password: ${{ secrets.CAPROVER_PASSWORD }}\n    caprover-app: 'my-app'\n    image-name: 'ghcr.io/kingstinct/my-app:${{ github.sha }}'\n    bun-version: '1.3.8'  # optional\n```\n\n### Health Check\n\nChecks the health of a deployed service with retries and optional Discord notifications.\n\n```yaml\n- uses: kingstinct/.github/actions/healthcheck@main\n  with:\n    url: 'https://my-app.example.com/health'\n    max-attempts: '24'           # optional, default: 24\n    retry-delay: '5s'            # optional, default: 5s\n    discord-webhook: ${{ secrets.DISCORD_WEBHOOK }}  # optional\n```\n\n## Workflow Templates\n\nWorkflow templates are available in the `workflow-templates/` directory. These appear in the \"Actions\" tab when creating new workflows in organization repositories.\n\n## Usage\n\nTo use these actions in your workflows, reference them with the full path:\n\n```yaml\nuses: kingstinct/.github/actions/\u003caction-name\u003e@main\n```\n\nYou can also pin to a specific commit SHA for stability:\n\n```yaml\nuses: kingstinct/.github/actions/\u003caction-name\u003e@\u003ccommit-sha\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkingstinct%2F.github","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkingstinct%2F.github","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkingstinct%2F.github/lists"}