Skip to content

Commit 765ed33

Browse files
committed
feat: Added actions for automated AI based resource creation
1 parent f035295 commit 765ed33

3 files changed

Lines changed: 435 additions & 1 deletion

File tree

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
name: New Resource Request
2+
description: Request a new Codify resource — it will be automatically generated, tested, and queued for human review.
3+
title: "New resource request: "
4+
labels: ["New resource request"]
5+
body:
6+
- type: input
7+
id: tool_name
8+
attributes:
9+
label: Tool Name
10+
description: The name of the tool or application
11+
placeholder: e.g. Syncthing, k9s, rbenv
12+
validations:
13+
required: true
14+
15+
- type: input
16+
id: homepage
17+
attributes:
18+
label: Homepage / Documentation URL
19+
description: The official homepage or documentation URL for the tool
20+
placeholder: https://...
21+
validations:
22+
required: true
23+
24+
- type: textarea
25+
id: description
26+
attributes:
27+
label: What should the resource manage?
28+
description: Describe what you want the Codify resource to install and configure
29+
placeholder: |
30+
e.g. The syncthing resource should install syncthing and allow users to manage
31+
its configuration including device IDs, shared folders, and GUI settings.
32+
Syncthing has a CLI so direct configuration should be possible.
33+
validations:
34+
required: true
35+
36+
- type: textarea
37+
id: install_notes
38+
attributes:
39+
label: Installation Notes (optional)
40+
description: Any known installation details, quirks, or preferred installation method
41+
placeholder: e.g. Prefer homebrew on macOS; uses the official install script on Linux
42+
validations:
43+
required: false
44+
45+
- type: textarea
46+
id: use_cases
47+
attributes:
48+
label: Use Cases (optional)
49+
description: How do you plan to use this resource? Any specific config parameters that matter?
50+
placeholder: e.g. I want to pin the version and configure custom data directories
51+
validations:
52+
required: false

0 commit comments

Comments
 (0)