https://github.com/sky-ecosystem/polls
https://github.com/sky-ecosystem/polls
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/sky-ecosystem/polls
- Owner: sky-ecosystem
- License: agpl-3.0
- Created: 2025-04-17T16:42:53.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2026-01-12T15:54:32.000Z (5 months ago)
- Last Synced: 2026-01-12T21:41:19.232Z (5 months ago)
- Language: TypeScript
- Size: 449 KB
- Stars: 0
- Watchers: 0
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Polls
This repository contains current and historical governance polls used in the Sky Protocol.
## Structure
The `polls` repo is organized as follows:
```
polls/
├── 2025/ # Contains polls conducted in 2025
│ └── e.g. 2024-05-20-community-sentiment.md
├── ... # Additional year directories as needed
├── templates/ # Contains templates for creating new poll files
│ └── poll-template.md
├── meta/ # Contains metadata related to polls (e.g., schema)
│ └── poll-metadata-schema.json
├── index.json # (Optional) An index of all polls for quick lookup
└── README.md # This file
```
## File Naming Convention
Poll files should follow the pattern: `-.md`.
- ``: The date the poll is scheduled to begin.
- ``: A brief, hyphenated description of the poll's topic (e.g., `community-sentiment`, `feature-request`).
## Components
- **Year Directories (`YYYY/`)**: Store historical records of polls, organized by the year they were conducted.
- **`templates/`**: Contains template files (`.md`) to ensure consistency when creating new polls. These templates might include standard YAML frontmatter for options and results.
- **`meta/`**: Holds metadata related to the polling process, such as JSON schemas for poll structures or result formats.
- **`index.json`**: (Optional) A JSON file that could provide a quick index or summary of all polls conducted.
- **`README.md`**: Provides an overview of this directory's structure, purpose, and conventions.
## Usage
- Create new poll files within the appropriate year directory (e.g., `2024/`).
- Use the naming convention `-.md`.
- Utilize the templates in `templates/` to ensure consistent formatting, especially for YAML frontmatter defining options and recording results.
- Refer to schemas in `meta/` if applicable for structuring poll data.