Add Ralph Wiggum agent setup and project specifications

- Add project constitution with vision, principles, and autonomy settings
- Add 15 feature specifications covering full app scope
- Configure agent entry points (AGENTS.md, CLAUDE.md)
- Add build prompt and speckit command for spec creation
- Include comprehensive .gitignore for iOS development

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-23 23:19:41 -05:00
parent c64aa4b8ac
commit 1049057d7d
24 changed files with 1092 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
# Create Specification
Create a new specification file in `specs/` based on the description provided.
## Arguments
$ARGUMENTS - Description of the feature to specify
## Output
Create a file `specs/[feature-name].md` with:
```markdown
# [Feature Name]
## Description
[What this feature does]
## Acceptance Criteria
- [ ] Criterion 1
- [ ] Criterion 2
- [ ] ...
## Technical Notes
[Implementation guidance based on project-specifications.txt]
## Edge Cases
[How to handle failure scenarios]
```
Ensure acceptance criteria are specific, testable, and aligned with the project constitution.

View File

@@ -0,0 +1,10 @@
{
"permissions": {
"allow": [
"WebFetch(domain:github.com)",
"WebFetch(domain:raw.githubusercontent.com)",
"Bash(git ls-remote:*)",
"Bash(git add:*)"
]
}
}