Skip to content

Commit a2abbdd

Browse files
committed
issue templates
1 parent baab2d1 commit a2abbdd

File tree

2 files changed

+213
-0
lines changed

2 files changed

+213
-0
lines changed
Lines changed: 111 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
name: "New Hardware Entry"
2+
description: "Submit a new neuromorphic chip or hardware system for the Hardware Guide."
3+
title: "[Hardware]: <Name of Hardware>"
4+
labels: ["content", "hardware"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for contributing to the Open Neuromorphic Hardware Guide!
10+
Please fill out the details below to match the schema used on the website.
11+
12+
- type: input
13+
id: product_name
14+
attributes:
15+
label: Product Name
16+
description: The name of the chip or board (e.g., "Loihi 2").
17+
placeholder: "e.g. Akida"
18+
validations:
19+
required: true
20+
21+
- type: input
22+
id: manufacturer
23+
attributes:
24+
label: Manufacturer / Organization
25+
description: The company or university lab behind the hardware.
26+
placeholder: "e.g. Intel"
27+
validations:
28+
required: true
29+
30+
- type: textarea
31+
id: summary
32+
attributes:
33+
label: Short Summary
34+
description: A 2-3 sentence summary for the card preview (approx. 160 characters).
35+
validations:
36+
required: true
37+
38+
- type: input
39+
id: website
40+
attributes:
41+
label: Product/Organization Website
42+
placeholder: "https://..."
43+
44+
- type: dropdown
45+
id: chip_type
46+
attributes:
47+
label: Chip Type
48+
options:
49+
- Digital
50+
- Mixed-signal
51+
- Analog
52+
- Other
53+
validations:
54+
required: true
55+
56+
- type: dropdown
57+
id: status
58+
attributes:
59+
label: Development Status
60+
options:
61+
- Announced
62+
- Released (Available for research/purchase)
63+
- Retired / End of Life
64+
validations:
65+
required: true
66+
67+
- type: input
68+
id: release_date
69+
attributes:
70+
label: Release Year/Date
71+
placeholder: "YYYY or YYYY-MM-DD"
72+
73+
- type: input
74+
id: neuron_count
75+
attributes:
76+
label: Neuron Count
77+
placeholder: "e.g. 1 million"
78+
79+
- type: input
80+
id: synapse_count
81+
attributes:
82+
label: Synapse Count
83+
placeholder: "e.g. 128 million"
84+
85+
- type: input
86+
id: power
87+
attributes:
88+
label: Power Consumption
89+
placeholder: "e.g. ~1 W or 30 mW"
90+
91+
- type: input
92+
id: software
93+
attributes:
94+
label: Supported Software/SDK
95+
placeholder: "e.g. Lava, MetaTF, PyNN"
96+
97+
- type: textarea
98+
id: detailed_description
99+
attributes:
100+
label: Detailed Description / Overview
101+
description: Provide a few paragraphs describing the architecture, unique features, and use cases. This will form the main body of the page.
102+
validations:
103+
required: true
104+
105+
- type: textarea
106+
id: publications
107+
attributes:
108+
label: Related Publications
109+
description: List relevant papers (Title, Authors, Venue, Link).
110+
placeholder: |
111+
- [Paper Title](link) by Author et al., Venue/Year
Lines changed: 102 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
name: "New Software Tool"
2+
description: "Submit a new framework, library, or data tool for the Software Guide."
3+
title: "[Software]: <Name of Software>"
4+
labels: ["content", "software"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for contributing to the Open Neuromorphic Software Guide!
10+
11+
- type: input
12+
id: software_name
13+
attributes:
14+
label: Software Name
15+
placeholder: "e.g. snnTorch"
16+
validations:
17+
required: true
18+
19+
- type: textarea
20+
id: description
21+
attributes:
22+
label: Short Description
23+
description: A concise summary for the card preview and SEO (120-160 characters).
24+
validations:
25+
required: true
26+
27+
- type: input
28+
id: repository
29+
attributes:
30+
label: Source Code URL (GitHub/GitLab)
31+
placeholder: "https://github.com/org/repo"
32+
validations:
33+
required: true
34+
35+
- type: input
36+
id: website
37+
attributes:
38+
label: Documentation/Website URL
39+
placeholder: "https://..."
40+
41+
- type: input
42+
id: pypi_id
43+
attributes:
44+
label: PyPI Package Name (if applicable)
45+
description: Used to generate the version badge.
46+
placeholder: "e.g. snntorch"
47+
48+
- type: input
49+
id: language
50+
attributes:
51+
label: Programming Language
52+
placeholder: "e.g. Python, C++"
53+
validations:
54+
required: true
55+
56+
- type: input
57+
id: license
58+
attributes:
59+
label: License
60+
placeholder: "e.g. MIT, GPL-3.0, Apache-2.0"
61+
validations:
62+
required: true
63+
64+
- type: input
65+
id: dependencies
66+
attributes:
67+
label: Key Dependencies
68+
placeholder: "e.g. PyTorch, JAX, NumPy"
69+
70+
- type: input
71+
id: field_of_application
72+
attributes:
73+
label: Field of Application
74+
placeholder: "e.g. Machine Learning, Neuroscience, Data Processing"
75+
76+
- type: checkboxes
77+
id: capabilities
78+
attributes:
79+
label: Capabilities
80+
options:
81+
- label: Supports Neuromorphic Hardware
82+
- label: Supports NIR (Neuromorphic Intermediate Representation)
83+
84+
- type: textarea
85+
id: maintainers
86+
attributes:
87+
label: Maintainer(s)
88+
description: Name of the primary maintainer or organization.
89+
validations:
90+
required: true
91+
92+
- type: textarea
93+
id: overview
94+
attributes:
95+
label: Detailed Overview
96+
description: |
97+
Please provide a detailed overview.
98+
- What problem does it solve?
99+
- Key features?
100+
- Who is it for?
101+
validations:
102+
required: true

0 commit comments

Comments
 (0)