|
| 1 | +name: "🔌 Plugin feature proposal" |
| 2 | +description: Propose a plugin to be listed (featured) or bundled in al-folio. |
| 3 | +labels: ["needs triage", "plugin-ecosystem"] |
| 4 | +body: |
| 5 | + - type: markdown |
| 6 | + attributes: |
| 7 | + value: > |
| 8 | + Use this template to propose adding a plugin to the `al-folio` ecosystem catalog. |
| 9 | + Featuring and bundling are separate decisions. |
| 10 | +
|
| 11 | + - type: checkboxes |
| 12 | + id: requirements |
| 13 | + attributes: |
| 14 | + label: Proposal checklist |
| 15 | + options: |
| 16 | + - label: I confirmed this plugin is not already listed in `_data/featured_plugins.yml`. |
| 17 | + required: true |
| 18 | + - label: I understand that featuring does not automatically mean bundling. |
| 19 | + required: true |
| 20 | + |
| 21 | + - type: input |
| 22 | + id: plugin_name |
| 23 | + attributes: |
| 24 | + label: Plugin name |
| 25 | + description: Human-readable plugin name. |
| 26 | + placeholder: al_folio_example |
| 27 | + validations: |
| 28 | + required: true |
| 29 | + |
| 30 | + - type: input |
| 31 | + id: repo_url |
| 32 | + attributes: |
| 33 | + label: Repository URL |
| 34 | + description: Public repository URL for the plugin. |
| 35 | + placeholder: https://github.com/your-org/al-folio-example |
| 36 | + validations: |
| 37 | + required: true |
| 38 | + |
| 39 | + - type: input |
| 40 | + id: gem_name |
| 41 | + attributes: |
| 42 | + label: Gem name |
| 43 | + description: Name published on RubyGems. |
| 44 | + placeholder: al_folio_example |
| 45 | + validations: |
| 46 | + required: true |
| 47 | + |
| 48 | + - type: input |
| 49 | + id: plugin_id |
| 50 | + attributes: |
| 51 | + label: Jekyll plugin ID |
| 52 | + description: Plugin id used in `_config.yml` plugins list. |
| 53 | + placeholder: al_folio_example |
| 54 | + validations: |
| 55 | + required: true |
| 56 | + |
| 57 | + - type: dropdown |
| 58 | + id: plugin_scope |
| 59 | + attributes: |
| 60 | + label: Plugin scope |
| 61 | + description: Does this plugin depend on al-folio-specific runtime contracts? |
| 62 | + options: |
| 63 | + - Theme-coupled (al-folio-specific) |
| 64 | + - Reusable (works outside al-folio) |
| 65 | + validations: |
| 66 | + required: true |
| 67 | + |
| 68 | + - type: dropdown |
| 69 | + id: requested_track |
| 70 | + attributes: |
| 71 | + label: Requested track |
| 72 | + description: Which listing track are you proposing? |
| 73 | + options: |
| 74 | + - Featured-only |
| 75 | + - Bundled in starter |
| 76 | + validations: |
| 77 | + required: true |
| 78 | + |
| 79 | + - type: input |
| 80 | + id: compatibility |
| 81 | + attributes: |
| 82 | + label: Compatibility range |
| 83 | + description: al-folio versions supported by this plugin. |
| 84 | + placeholder: "al_folio_min: 1.0.0, al_folio_max: 1.x" |
| 85 | + validations: |
| 86 | + required: true |
| 87 | + |
| 88 | + - type: input |
| 89 | + id: demo_path |
| 90 | + attributes: |
| 91 | + label: Demo page/post URL |
| 92 | + description: Public demo path showing the plugin in action. |
| 93 | + placeholder: https://your-site.example/plugins/my-plugin-demo |
| 94 | + validations: |
| 95 | + required: true |
| 96 | + |
| 97 | + - type: input |
| 98 | + id: maintainer_contact |
| 99 | + attributes: |
| 100 | + label: Maintainer contact |
| 101 | + description: Primary maintainer handle or contact URL. |
| 102 | + placeholder: https://github.com/your-handle |
| 103 | + validations: |
| 104 | + required: true |
| 105 | + |
| 106 | + - type: textarea |
| 107 | + id: notes |
| 108 | + attributes: |
| 109 | + label: Additional notes |
| 110 | + description: Add context, migration notes, or caveats. |
| 111 | + validations: |
| 112 | + required: false |
0 commit comments