feat: 家計簿アプリサンプルと create-next-liqueur-app CLIの追加#25
Merged
clearclown merged 4 commits intomainfrom Jan 18, 2026
Merged
Conversation
AI駆動の家計簿ダッシュボードアプリケーションを追加。 このアプリはdocs/guides/household-budget-app.mdのガイドに基づいて実装。 ### 主な機能 - 自然言語からダッシュボード生成(LiquidViewSchema) - カテゴリ別支出・収入の可視化 - 円グラフ、折れ線グラフ、テーブル表示 - ダッシュボードの保存・読み込み ### 技術構成 - Next.js 15.5 + React 19 - Prisma ORM + SQLite - TailwindCSS - @liqueur/protocol, @liqueur/react, @liqueur/ai-provider ### ファイル構成 - examples/household-budget/: アプリケーション本体 - prisma/schema.prisma: データベーススキーマ - app/api/liquid/: API エンドポイント - app/dashboard/: ダッシュボードUI ### 関連Issue - #24: ArtifactGeneratorの未使用メソッドをリファクタリング Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Move playground to examples/ - Delete unused auth package - Update all package.json with npm publish fields - Update all READMEs with consistent documentation - Fix repository URLs to clearclown/liqueur - Add PrismaExecutor to db-adapter - Fix next.config.ts paths for moved playground Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- npx create-next-liqueur-app my-dashboard でプロジェクト作成可能 - Next.js + @liqueur/* テンプレートを含む - AIチャットでダッシュボード生成するサンプルUI - READMEにQuick Startセクションを追加 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
This PR adds significant new functionality to the Liqueur framework:
- Purpose: Add a complete household budget example app, CLI scaffolding tool, and database execution layer
- Key Changes:
- New
examples/household-budget- Full sample application with Prisma + PostgreSQL - New
create-next-liqueur-appCLI - Project scaffolding vianpx create-next-liqueur-app - New
PrismaExecutorin@liqueur/db-adapter- Execute DataSource queries - Repository URL migration -
ablaze/liqueur→clearclown/liqueur - Comprehensive README improvements across all packages
- New
Reviewed changes
Copilot reviewed 93 out of 156 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
pnpm-workspace.yaml |
Added examples/* to workspace |
pnpm-lock.yaml |
Dependencies for new packages and examples |
packages/react/* |
Updated URLs, improved README documentation |
packages/protocol/* |
Updated URLs, enhanced API reference docs |
packages/db-adapter/* |
Added PrismaExecutor, tests, comprehensive README |
packages/create-next-liqueur-app/* |
New CLI tool with template files |
packages/auth/* |
Removed files (appears to be cleanup) |
examples/playground/.gitignore |
Added Next.js build artifacts |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
npx create-next-liqueur-appCLIツールを追加してプロジェクト作成を簡略化Changes
新規パッケージ
npx create-next-liqueur-app my-dashboardでプロジェクト作成可能新規サンプル
改善
Test plan
npx create-next-liqueur-app test-appでプロジェクト作成確認cd examples/household-budget && pnpm devで動作確認🤖 Generated with Claude Code