├── .dockerignore ├── .env.example ├── .github └── FUNDING.yml ├── .gitignore ├── .node-version ├── .vscode └── settings.json ├── AGENTS.md ├── CLAUDE.md ├── Dockerfile ├── LICENSE ├── README.md ├── agent ├── .claude │ ├── agents │ │ └── crawl.md │ ├── commands │ │ └── weekly.md │ └── skills │ │ ├── research │ │ ├── REFERENCE.md │ │ └── SKILL.md │ │ ├── screening │ │ └── SKILL.md │ │ └── writing │ │ └── SKILL.md ├── CLAUDE.md ├── config.ts ├── index.ts └── mcp.json ├── app ├── (frontend) │ ├── global.css │ ├── layout.tsx │ ├── page.tsx │ ├── styles │ │ ├── buttons.css │ │ ├── code.css │ │ ├── footer.css │ │ ├── gist.css │ │ ├── header.css │ │ ├── main.css │ │ ├── menu.css │ │ ├── pagination.css │ │ ├── post.css │ │ ├── syntax.css │ │ └── terms.css │ └── weekly │ │ └── [slug] │ │ └── page.tsx ├── (payload) │ ├── admin │ │ ├── [[...segments]] │ │ │ ├── not-found.tsx │ │ │ └── page.tsx │ │ └── importMap.js │ ├── api │ │ ├── [...slug] │ │ │ └── route.ts │ │ ├── graphql-playground │ │ │ └── route.ts │ │ └── graphql │ │ │ └── route.ts │ ├── custom.css │ └── layout.tsx ├── favicon.ico ├── opengraph-image.png ├── rss.xml │ └── route.ts ├── sitemap.ts └── twitter-image.png ├── cloudflare-env.d.ts ├── collections ├── Media.ts ├── Users.ts └── Weekly.ts ├── components ├── payload │ └── overtype.tsx └── theme │ ├── Pagination.tsx │ ├── PostMeta.tsx │ ├── TagList.tsx │ ├── TerminalLayout.tsx │ ├── ThemeContext.tsx │ ├── ThemeProvider.tsx │ ├── ThemeScript.tsx │ ├── ThemeSwitcher.tsx │ ├── constants.ts │ ├── hooks.ts │ ├── index.ts │ └── theme-script.ts ├── eslint.config.mjs ├── lib ├── config.ts └── weekly │ ├── data.ts │ └── utils.ts ├── migrations ├── 20251129_022910.json ├── 20251129_022910.ts └── index.ts ├── next.config.mjs ├── open-next.config.ts ├── package.json ├── payload-types.ts ├── payload.config.ts ├── pnpm-lock.yaml ├── public └── _headers ├── tsconfig.json ├── worker ├── .env.example ├── cloudflare-env.d.ts ├── container.ts ├── index.ts ├── tsconfig.json ├── workflow.ts └── wrangler.jsonc └── wrangler.jsonc /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | # A generated secret for Payload 2 | PAYLOAD_SECRET= 3 | NEXT_PUBLIC_BASE_URL= -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: ccbikai 2 | buy_me_a_coffee: miantiao 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 22 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- 1 | AGENTS.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/README.md -------------------------------------------------------------------------------- /agent/.claude/agents/crawl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/agent/.claude/agents/crawl.md -------------------------------------------------------------------------------- /agent/.claude/commands/weekly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/agent/.claude/commands/weekly.md -------------------------------------------------------------------------------- /agent/.claude/skills/research/REFERENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/agent/.claude/skills/research/REFERENCE.md -------------------------------------------------------------------------------- /agent/.claude/skills/research/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/agent/.claude/skills/research/SKILL.md -------------------------------------------------------------------------------- /agent/.claude/skills/screening/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/agent/.claude/skills/screening/SKILL.md -------------------------------------------------------------------------------- /agent/.claude/skills/writing/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/agent/.claude/skills/writing/SKILL.md -------------------------------------------------------------------------------- /agent/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/agent/CLAUDE.md -------------------------------------------------------------------------------- /agent/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/agent/config.ts -------------------------------------------------------------------------------- /agent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/agent/index.ts -------------------------------------------------------------------------------- /agent/mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/agent/mcp.json -------------------------------------------------------------------------------- /app/(frontend)/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/app/(frontend)/global.css -------------------------------------------------------------------------------- /app/(frontend)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/app/(frontend)/layout.tsx -------------------------------------------------------------------------------- /app/(frontend)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/app/(frontend)/page.tsx -------------------------------------------------------------------------------- /app/(frontend)/styles/buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/app/(frontend)/styles/buttons.css -------------------------------------------------------------------------------- /app/(frontend)/styles/code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/app/(frontend)/styles/code.css -------------------------------------------------------------------------------- /app/(frontend)/styles/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/app/(frontend)/styles/footer.css -------------------------------------------------------------------------------- /app/(frontend)/styles/gist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/app/(frontend)/styles/gist.css -------------------------------------------------------------------------------- /app/(frontend)/styles/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/app/(frontend)/styles/header.css -------------------------------------------------------------------------------- /app/(frontend)/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/app/(frontend)/styles/main.css -------------------------------------------------------------------------------- /app/(frontend)/styles/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/app/(frontend)/styles/menu.css -------------------------------------------------------------------------------- /app/(frontend)/styles/pagination.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/app/(frontend)/styles/pagination.css -------------------------------------------------------------------------------- /app/(frontend)/styles/post.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/app/(frontend)/styles/post.css -------------------------------------------------------------------------------- /app/(frontend)/styles/syntax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/app/(frontend)/styles/syntax.css -------------------------------------------------------------------------------- /app/(frontend)/styles/terms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/app/(frontend)/styles/terms.css -------------------------------------------------------------------------------- /app/(frontend)/weekly/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/app/(frontend)/weekly/[slug]/page.tsx -------------------------------------------------------------------------------- /app/(payload)/admin/[[...segments]]/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/app/(payload)/admin/[[...segments]]/not-found.tsx -------------------------------------------------------------------------------- /app/(payload)/admin/[[...segments]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/app/(payload)/admin/[[...segments]]/page.tsx -------------------------------------------------------------------------------- /app/(payload)/admin/importMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/app/(payload)/admin/importMap.js -------------------------------------------------------------------------------- /app/(payload)/api/[...slug]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/app/(payload)/api/[...slug]/route.ts -------------------------------------------------------------------------------- /app/(payload)/api/graphql-playground/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/app/(payload)/api/graphql-playground/route.ts -------------------------------------------------------------------------------- /app/(payload)/api/graphql/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/app/(payload)/api/graphql/route.ts -------------------------------------------------------------------------------- /app/(payload)/custom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/(payload)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/app/(payload)/layout.tsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/app/opengraph-image.png -------------------------------------------------------------------------------- /app/rss.xml/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/app/rss.xml/route.ts -------------------------------------------------------------------------------- /app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/app/sitemap.ts -------------------------------------------------------------------------------- /app/twitter-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/app/twitter-image.png -------------------------------------------------------------------------------- /cloudflare-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/cloudflare-env.d.ts -------------------------------------------------------------------------------- /collections/Media.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/collections/Media.ts -------------------------------------------------------------------------------- /collections/Users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/collections/Users.ts -------------------------------------------------------------------------------- /collections/Weekly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/collections/Weekly.ts -------------------------------------------------------------------------------- /components/payload/overtype.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/components/payload/overtype.tsx -------------------------------------------------------------------------------- /components/theme/Pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/components/theme/Pagination.tsx -------------------------------------------------------------------------------- /components/theme/PostMeta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/components/theme/PostMeta.tsx -------------------------------------------------------------------------------- /components/theme/TagList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/components/theme/TagList.tsx -------------------------------------------------------------------------------- /components/theme/TerminalLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/components/theme/TerminalLayout.tsx -------------------------------------------------------------------------------- /components/theme/ThemeContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/components/theme/ThemeContext.tsx -------------------------------------------------------------------------------- /components/theme/ThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/components/theme/ThemeProvider.tsx -------------------------------------------------------------------------------- /components/theme/ThemeScript.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/components/theme/ThemeScript.tsx -------------------------------------------------------------------------------- /components/theme/ThemeSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/components/theme/ThemeSwitcher.tsx -------------------------------------------------------------------------------- /components/theme/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/components/theme/constants.ts -------------------------------------------------------------------------------- /components/theme/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/components/theme/hooks.ts -------------------------------------------------------------------------------- /components/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/components/theme/index.ts -------------------------------------------------------------------------------- /components/theme/theme-script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/components/theme/theme-script.ts -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /lib/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/lib/config.ts -------------------------------------------------------------------------------- /lib/weekly/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/lib/weekly/data.ts -------------------------------------------------------------------------------- /lib/weekly/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/lib/weekly/utils.ts -------------------------------------------------------------------------------- /migrations/20251129_022910.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/migrations/20251129_022910.json -------------------------------------------------------------------------------- /migrations/20251129_022910.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/migrations/20251129_022910.ts -------------------------------------------------------------------------------- /migrations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/migrations/index.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/next.config.mjs -------------------------------------------------------------------------------- /open-next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/open-next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/package.json -------------------------------------------------------------------------------- /payload-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/payload-types.ts -------------------------------------------------------------------------------- /payload.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/payload.config.ts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/_headers: -------------------------------------------------------------------------------- 1 | /_next/static/* 2 | Cache-Control: public,max-age=31536000,immutable -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/tsconfig.json -------------------------------------------------------------------------------- /worker/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/worker/.env.example -------------------------------------------------------------------------------- /worker/cloudflare-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/worker/cloudflare-env.d.ts -------------------------------------------------------------------------------- /worker/container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/worker/container.ts -------------------------------------------------------------------------------- /worker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/worker/index.ts -------------------------------------------------------------------------------- /worker/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/worker/tsconfig.json -------------------------------------------------------------------------------- /worker/workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/worker/workflow.ts -------------------------------------------------------------------------------- /worker/wrangler.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/worker/wrangler.jsonc -------------------------------------------------------------------------------- /wrangler.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccbikai/aigc-weekly/HEAD/wrangler.jsonc --------------------------------------------------------------------------------