{"id":51190239,"url":"https://github.com/sandst1/qwen3.6-smoketest","last_synced_at":"2026-06-27T14:30:55.014Z","repository":{"id":355798822,"uuid":"1213318272","full_name":"sandst1/qwen3.6-smoketest","owner":"sandst1","description":"Testing how Qwen-3.6-35B-A3B does agentic engineering locally","archived":false,"fork":false,"pushed_at":"2026-04-17T08:57:26.000Z","size":2473,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-05T10:51:54.704Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/sandst1.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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-04-17T08:57:12.000Z","updated_at":"2026-04-17T08:57:32.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/sandst1/qwen3.6-smoketest","commit_stats":null,"previous_names":["sandst1/qwen3.6-smoketest"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/sandst1/qwen3.6-smoketest","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sandst1%2Fqwen3.6-smoketest","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sandst1%2Fqwen3.6-smoketest/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sandst1%2Fqwen3.6-smoketest/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sandst1%2Fqwen3.6-smoketest/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sandst1","download_url":"https://codeload.github.com/sandst1/qwen3.6-smoketest/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sandst1%2Fqwen3.6-smoketest/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34857480,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-27T02:00:06.362Z","response_time":126,"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":[],"created_at":"2026-06-27T14:30:52.573Z","updated_at":"2026-06-27T14:30:55.007Z","avatar_url":"https://github.com/sandst1.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Bookstore backend (smoketest)\n\n## Why this repository exists\n\nThis project is a **controlled exercise in agentic software engineering**. The goal is to observe how well **[Qwen3.6-35B-A3B](https://huggingface.co/Qwen/Qwen3.6-35B-A3B)** performs when asked to design, implement, and test a non-trivial backend **through an autonomous coding agent**, rather than hand-written edits only.\n\nImplementation work was driven by **[nav](https://github.com/sandst1/nav)** — a minimal coding agent that plans tasks, edits the tree, and runs shell commands — so this repo doubles as a **traceable artifact** of that agent loop (including `.nav/` logs and task state when present).\n\n## What the software does\n\nThis is a small **bookstore REST API**: it exposes HTTP endpoints for **authors**, **books**, and **customers**, backed by **SQLite** via `better-sqlite3`. Requests are handled with **Express**, with shared error handling and a layered layout (routes → controllers → services → repositories → database schema/migrations).\n\nIt is not meant to be a production storefront; it is a **realistic API surface** with enough structure (and tests) to stress planning, consistency, and refactoring under an agent.\n\n## Stack\n\n- **Runtime:** Node.js  \n- **Language:** TypeScript  \n- **Web:** Express  \n- **Database:** SQLite (`better-sqlite3`)  \n- **Tests:** Jest, Supertest (including integration-style HTTP tests)\n\n## Repository size (approximate)\n\nCounts are **physical lines** (as in `wc -l` per file), including blank lines and comments. **Excluded** from the scan: `node_modules/`, `dist/`, `coverage/`, `.git/`, `.nav/`.\n\n| Category | Files | Lines |\n|----------|------:|------:|\n| Application TypeScript (`src/**/*.ts`) | 27 | **2,031** |\n| Test TypeScript (`tests/**/*.ts`) | 14 | **7,465** |\n| Tooling config (`jest.config.js`, `.eslintrc.cjs`, `package.json`, `tsconfig.json`) | 4 | **89** |\n| `package-lock.json` (generated) | 1 | **6,837** |\n\nRoughly **3.7×** as many test lines as `src/` lines in this snapshot — useful context when comparing agent-generated verbosity vs. application code.\n\n### `src/` lines by area (TypeScript only)\n\n| Area | Lines |\n|------|------:|\n| `repositories/` | 810 |\n| `services/` | 418 |\n| `controllers/` | 250 |\n| `database/` | 181 |\n| `types/` | 168 |\n| `src/` root (`app.ts`, `index.ts`, `server.ts`) | 95 |\n| `routes/` | 62 |\n| `middleware/` | 47 |\n\n## Development\n\n```bash\nnpm install\nnpm run dev        # ts-node src/server.ts\nnpm run build      # compile to dist/\nnpm start          # node dist/src/server.js\nnpm run lint\nnpm run typecheck\nnpm test\nnpm run test:changed   # Jest --onlyChanged\n```\n\nSee also `AGENTS.md` for project-local agent notes.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsandst1%2Fqwen3.6-smoketest","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsandst1%2Fqwen3.6-smoketest","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsandst1%2Fqwen3.6-smoketest/lists"}