-
Notifications
You must be signed in to change notification settings - Fork 10
Marketplace proposal #739
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
Marketplace proposal #739
Changes from all commits
6c05a36
ee02eb7
b959993
18f20a4
693ce64
f6a1c20
3403f22
06a9fe4
5e55987
f99d624
7123497
c218983
8048621
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,43 +1,21 @@ | ||
| --- | ||
| name: Spec | ||
| about: Create a specification for Ralph autonomous implementation | ||
| name: Issue | ||
| about: Create an issue | ||
| title: '' | ||
| labels: ["feature", "in-refinement"] | ||
| projects: ["oscmcompany/1"] | ||
|
|
||
| --- | ||
| # Overview | ||
|
|
||
| # Description | ||
|
|
||
| <Context: why this work matters, background needed> | ||
|
|
||
| **Goal:** <Single clear statement of what we're trying to achieve> | ||
|
|
||
| ## Requirements | ||
|
|
||
| ### Category 1 | ||
|
|
||
| - [ ] Requirement (testable/verifiable) | ||
| - [ ] Another requirement | ||
|
|
||
| ### Category 2 | ||
|
|
||
| - [ ] Requirement | ||
| - [ ] Requirement | ||
|
|
||
| ## Open Questions | ||
|
|
||
| - [ ] Question that needs resolution before ready? | ||
| - [ ] Another question? | ||
|
|
||
| ## Decisions | ||
|
|
||
| - [ ] **Decision name:** Choice made and rationale | ||
| ## Context | ||
|
|
||
| ## Specification | ||
| <!-- | ||
| Describe the bug, feature, or task. | ||
| --> | ||
|
|
||
| <Detailed design, diagrams, formats - filled in as decisions are made> | ||
| ## Changes | ||
|
|
||
| ## Implementation Notes | ||
| <!-- | ||
| Provide solution(s) or recommendation(s) as bullet points. | ||
| Provide specific action items as checkboxes. | ||
| --> | ||
|
|
||
| <Filled after implementation - gotchas, learnings> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -20,5 +20,7 @@ data/ | |
| **/model.tar.gz | ||
| **/*.safetensor | ||
| **/*.json | ||
| notes.md | ||
| etc/ | ||
| ./ralph/marketplace.json | ||
| ./ralph/.state_version | ||
| .scratchpad/ | ||
|
Comment on lines
22
to
+26
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Unignore tracked marketplace JSON files. Line 22 ignores all JSON, which will also ignore 🛠️ Proposed fix **/*.json
+!.ralph/config.json
+!.ralph/events/*.json
./ralph/marketplace.json
./ralph/.state_version
.scratchpad/🤖 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.
Paths should not start with
./in.gitignore. Leading./is treated literally, so these patterns won't match files in.ralph/.Prompt To Fix With AI