-
Notifications
You must be signed in to change notification settings - Fork 0
Add Halloween Party problem materials and interactive tutorial #311
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
2396269
fix(docs): resolve React SVG attribute warnings and adjust positions …
myoshi2891 5c4afff
build: auto-generate public directory
myoshi2891 845fc6b
fix(docs): resolve code review findings in Halloween_party files
myoshi2891 0ef3cba
Merge branch 'origin/dev-from-macmini' into dev-from-macmini
myoshi2891 1c2f515
build: auto-generate public directory
myoshi2891 4a58d71
fix(docs): resolve Round 2 code review findings in Halloween_party.html
myoshi2891 a8c5800
Merge branch 'origin/dev-from-macmini' into dev-from-macmini
myoshi2891 5ab33b5
build: auto-generate public directory
myoshi2891 37a5ffb
fix(docs): resolve Round 3 code review findings in Halloween_party.html
myoshi2891 fcc23c9
Merge branch 'origin/dev-from-macmini' into dev-from-macmini
myoshi2891 650bce4
build: auto-generate public directory
myoshi2891 eac54bc
docs: add spec-driven-development skill based on official guides
myoshi2891 efe082a
fix: resolve merge conflict in public/index.html by regenerating
myoshi2891 6e8d59b
build: auto-generate public directory
myoshi2891 4504205
chore: commit unstaged changes
myoshi2891 ff7ef9c
fix: resolve merge conflict in public/index.html by regenerating
myoshi2891 52836c5
build: auto-generate public directory
myoshi2891 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,52 @@ | ||
| --- | ||
| name: spec-driven-development | ||
| description: > | ||
| Provides best practices, folder structures, and templates for AI Spec-Driven Development (SDD) Markdown files. Use this skill when creating, updating, or reviewing project spec documents (`spec.md`, `requirements.md`, `design.md`, `tasks.md`), agent configuration files (`CLAUDE.md`, `GEMINI.md`, `rules/`), or other Antigravity/Claude Code specific assets. | ||
| --- | ||
|
|
||
| # AI Spec-Driven Development (SDD) Markdown Guide | ||
|
|
||
| ## Goal | ||
|
|
||
| To maintain high-quality, standardized Markdown files that serve as the foundation for Agent-First IDEs (Google Antigravity and Claude Code). This ensures the agent perfectly aligns with human intent through a rigorous "Spec First, Code Second" approach. | ||
|
|
||
| ## SDD Workflow (4 Phases) | ||
|
|
||
| 1. **仕様策定 (Spec & Requirements)**: `docs/spec.md` → `docs/requirements.md` | ||
| 2. **設計 (Design)**: `docs/design.md` & `.agent/rules/*.md` | ||
| 3. **エージェント実行 (Execution)**: `docs/tasks.md` & `workflows/` | ||
| 4. **検証 (Verification)**: Artifacts (Walkthrough, Screenshots, Recordings), Feedback Loop into Knowledge Base | ||
|
|
||
| ## File Roles & Best Practices | ||
|
|
||
| ### 1. Specification Documents (`docs/`) | ||
|
|
||
| - **`spec.md`**: The starting point. Defines the "What" and "Why" in 2-4 sentences, main features, non-functional constraints, and raw acceptance criteria. Must be treated as a living document. | ||
| - **`requirements.md`**: Decomposes `spec.md` into Functional Requirements (FR-001) and Non-Functional Requirements (NFR-001) with strict acceptance criteria and priorities (P0/P1). Acts as the "contract". | ||
| - **`design.md` / `architecture.md`**: Technical design including Mermaid sequence diagrams, DDLs, API endpoints, and system architecture. | ||
| - **`tasks.md`**: Granular, independently testable tasks. Use checkboxes `- [ ]`. For Antigravity, explicitly state multi-agent parallelization (e.g., "Agent A", "Agent B / Parallelizable"). Always mark completed tasks `[x]` and log generated artifacts. | ||
|
|
||
| ### 2. General Agent Configurations | ||
|
|
||
| - **`CLAUDE.md` (Claude)**: Project persistent memory. Must be kept under 500 lines. Prioritize critical rules and use `@import` for long texts. Avoid excessive instructions that can be enforced by Hooks. | ||
| - **`GEMINI.md` (Antigravity)**: Global persistent memory (`~/.gemini/GEMINI.md`). Contains cross-project preferences and global tools. Avoid project-specific rules here! | ||
|
|
||
| ### 3. Antigravity-Specific Advanced Features | ||
|
|
||
| - **Rules (`.agent/rules/*.md`)**: Passive constraints (System Prompts). | ||
| - Use `always-on.md` for project core rules and SDD spec-loading enforcement (e.g., instructing the agent to always read `docs/spec.md` ~ `docs/tasks.md` before coding). | ||
| - Use file-specific rules like `go-style.md` using `activation: fileMatch` and `pattern: "**/*.go"` to save context window. | ||
| - **Skills (`.agent/skills/`)**: Progressive disclosure knowledge. | ||
| - The `description` field in `SKILL.md` is the "meaningful trigger". Make it highly specific ("what", "when", "why"). | ||
| - Do not mix up Rules (passive constraints) and Skills (procedural active knowledge). | ||
| - **Workflows (`.agent/workflows/`)**: Active automation scripts for repetitive tasks (e.g., `/deploy`, `/review`). They can be chained. | ||
| - **Knowledge Base (`.context/`)**: Auto-injected context where the agent records discovered "Gotchas", architectural decisions, and bug patterns (like `MEMORY.md` in Claude Code). | ||
| - **Artifacts**: Agents automatically generate _Task Lists_, _Implementation Plans_, _Walkthroughs_, _Screenshots_, and _Recordings_. **Crucial Rule**: Humans must always review Implementation Plans and Artifacts before allowing major code changes. | ||
|
|
||
| ## Global SDD Rules | ||
|
|
||
| 1. **Spec First, Code Second**: Write zero lines of code until `spec` → `requirements` → `design` → `tasks` are prepared. | ||
| 2. **Keep Specs Alive**: If code changes, the design and specs must be updated immediately to prevent project rot. | ||
| 3. **Independent Tasks**: Decompose tasks so they can be executed and tested independently without polluting overall context. | ||
| 4. **Use Subagents/Parallel Agents**: Execute tasks via subagents (Claude) or parallel Agent Manager (Antigravity) to keep context pristine. | ||
| 5. **Enforce Why, Not Just What**: When defining rules or architectural choices, explain the reasoning (e.g., "Ban ORMs because performance tests showed 20x latency"). | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| 3.12.11 | ||
| 3.12.11 |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ワークフローパス表記を
.agent/workflows/に統一してください。Line 17 の
workflows/は、Line 42 の.agent/workflows/と不一致です。ドキュメント参照先の誤解を避けるため、表記を揃えるべきです。✏️ 修正例
🤖 Prompt for AI Agents
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Make it as an issue
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
@myoshi2891承知しました。issueを作成します。🏁 Script executed:
Length of output: 74
@myoshi2891issueを作成しました!🎫 Issue
#312: SKILL.md: ワークフローパス表記の不一致を修正PRとレビューコメントへのバックリンクを含め、myoshi2891さんにアサインしました。