{"id":51843478,"url":"https://github.com/sageframe-no-kaji/star-actually","last_synced_at":"2026-07-23T09:01:52.601Z","repository":{"id":370624034,"uuid":"1294062162","full_name":"sageframe-no-kaji/star-actually","owner":"sageframe-no-kaji","description":"A domain-blind engine that weaves a directory of depth-layered markdown into a fully static, navigable, terminal-aesthetic knowledge site.","archived":false,"fork":false,"pushed_at":"2026-07-17T01:52:37.000Z","size":430,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-07-17T03:31:09.941Z","etag":null,"topics":["documentation","engine","htmx","knowledge-architecture","progressive-disclosure","published","python","static-site-generator"],"latest_commit_sha":null,"homepage":"https://star-actually.sageframe.net","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sageframe-no-kaji.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2026-07-08T18:43:33.000Z","updated_at":"2026-07-17T01:52:41.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/sageframe-no-kaji/star-actually","commit_stats":null,"previous_names":["sageframe-no-kaji/star-actually"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/sageframe-no-kaji/star-actually","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sageframe-no-kaji%2Fstar-actually","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sageframe-no-kaji%2Fstar-actually/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sageframe-no-kaji%2Fstar-actually/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sageframe-no-kaji%2Fstar-actually/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sageframe-no-kaji","download_url":"https://codeload.github.com/sageframe-no-kaji/star-actually/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sageframe-no-kaji%2Fstar-actually/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35796817,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-07-20T02:08:10.276Z","status":"online","status_checked_at":"2026-07-23T02:00:06.683Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["documentation","engine","htmx","knowledge-architecture","progressive-disclosure","published","python","static-site-generator"],"created_at":"2026-07-23T09:01:52.528Z","updated_at":"2026-07-23T09:01:52.590Z","avatar_url":"https://github.com/sageframe-no-kaji.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# star-actually — the engine\n\nThe domain-blind engine behind **`*, Actually`**: a build system that weaves a\ndirectory of depth-layered markdown nodes into a fully static, navigable,\nterminal-aesthetic knowledge site. This repo is the shared package; each subject\nis a separate **instance** repo (`ssh-actually`, `ho-actually`, …) that supplies\ncontent and consumes this engine.\n\n## The three parts\n\n- **The Loom** (`src/star_actually/`) — parses `nodes/`, validates the graph,\n  renders the static site. CLI: `star-actually validate | build | serve`.\n- **The Terminal** (`src/star_actually/templates/`, `src/star_actually/assets/`) — the reading experience: HTML +\n  CSS + one vanilla JS file + vendored htmx. Zero external requests.\n- **The Receptionist** (`portal/`) — the one dynamic piece: a FastAPI service\n  mapping a natural-language question to an entry node. Optional; dormant until\n  an instance wires it up. The site degrades to browsable graph + full-text\n  search when it is absent.\n\n## The seam\n\nThe engine never mentions any subject. Everything domain-specific arrives\nthrough two files **in the instance repo**:\n\n- `site.yaml` — title, tagline, root node, receptionist prompt.\n- `nodes/*.md` — the content, as depth-layered markdown with YAML frontmatter.\n\nIf a change to the engine requires knowing the subject, the change is in the\nwrong repo. This is the extraction seam, and keeping it clean is what lets one\nengine serve every instance.\n\n## How an instance consumes it\n\nInstances declare a dependency on this package and pin it. During local\ndevelopment across the `star-actually/` family, a path source is convenient; CI\nand deploy builds pin a git tag for reproducibility:\n\n```toml\n# instance pyproject.toml\ndependencies = [\"star-actually\"]\n\n[tool.uv.sources]\nstar-actually = { path = \"../engine\", editable = true }   # local dev\n# star-actually = { git = \"…/star-actually.git\", tag = \"v0.1.0\" }  # CI / deploy\n```\n\nThen, in the instance directory:\n\n```\nuv run star-actually validate   # parse nodes, check the graph is sound\nuv run star-actually build      # weave dist/\n```\n\n## Verification\n\n```\nmake verify   # ruff format --check + ruff check + mypy --strict + pytest (≥90% coverage)\n```\n\nThe engine's tests are synthetic — they build throwaway graphs in `tmp_path`.\nContent-coupled tests (real node counts, real `site.yaml` values) live in the\ninstance repos, not here.\n\n## License\n\nMIT (`LICENSE`). Instance **content** is licensed separately by each instance.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsageframe-no-kaji%2Fstar-actually","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsageframe-no-kaji%2Fstar-actually","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsageframe-no-kaji%2Fstar-actually/lists"}