Travis Hathaway
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee

      This note has no invitees

    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Note Insights New
    • Engagement control
    • Make a copy
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Note Insights Versions and GitHub Sync Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Engagement control Make a copy Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       Owned this note    Owned this note      
    Published Linked with GitHub
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    # Plugins Index ## Summary This document proposes an official conda plugins index. It covers how the index works, how plugins can be added to it and which group will be responsible for maintaining it. This proposal is split into two different sections, “Technical implementation” which covers the technical details for how plugins are managed and discovered by conda users and “Maintainers” which covers the group of people ultimately responsible for maintaining this plugin index and their decision making process. ## Technical implementation The technical implementation of the plugins index consists of two components: the server where the index is to be hosted (a simple JSON file) and the client which will consume this file. Below is a description of these components work. ### Server The plugins index will be hosted as a JSON file at conda.org at the following URL: - https://plugins.conda.org/plugins.json The schema file defining the layout of this file will be hosted at: - https://plugins.conda.org/plugins.schema.v1.json The v1 schema will be defined as follows: ```json { "$schema": "http://json-schema.org/draft/2020-12/schema", "$id": "https://plugins.conda.org/plugins.schema.v1.json", "title": "Plugins Index Schema v1", "description": "Schema definition for the plugins.json file", "type": "object", "properties": { "plugins": { "type": "array", "uniqueItems": true, "minItems": 1, "items": { "required": [ "name", "description", "website" ], "properties": { "name": { "type": "string", "minLength": 1 }, "description": { "type": "string", "minLength": 1 }, "website": { "type": "string", "minLength": 1 }, "channels": { "type": "array", "uniqueItems": true, "minItems": 1, "items": { "required": [ "name", "package_name" ], "properties": { "name": { "type": "string", "minLength": 1 }, "package_name": { "type": "string", "minLength": 1 } } } } } } } }, "required": [ "plugins" ] } ``` An example of what `plugins.json` looks like: ```json { "plugins": [ { "name": "conda-auth", "description": "Plugin for enhanced authentication handling", "website": "https://github.com/conda-incubator/conda-auth", "channels": [ { "name": "defaults", "package_name": "conda-auth" }, { "name": "conda-forge", "package_name": "conda-auth" } ] } ] } ``` Clients will have the ability to consume both the `plugins.json` and `plugins.schema.v1.json` to display information about available plugins and verify the schema of the `plugins.json` file, respectively. #### Updating the index The index will be manually updated, and each new addition will be made via a pull request to the [plugins](https://github.com/conda-incubator/plugins) repository. A check will be added to this repository so that the `plugins.json` file is validated against the `plugins.schema.v1.json` file. This will ensure no errors in formatting or content are introducing while manually editing this file. A discussion on exactly who must approve these changes follows in the "Maintainers" section. ### Client For the client, we will be focusing entirely on the `conda` CLI tool. A new subcommand will be added to conda to allow users to discover plugins (`conda plugins list`). The updates to the client will keep the following goals in mind described as user stories: 1. As a user, I want to be able to list my currently installed plugins 2. As a user, I want to see a list of all available plugins and know which ones I currently have installed 3. As a user, I want to be able to easily discover new plugins, read brief descriptions about and learn where I can find more information on them 4. As a user, I want to be able to install a plugin 5. As a user, I want to be able to remove a plugin #### Discovering plugins For items 1-3, we will be adding a new `conda plugins list` command that will download the `plugins.json` file and display a list of all plugins contained within. A listing of the base environment will be referenced to see which plugins are currently available. This information will be made available to the user. An example of what the output of that command could look like is shown below: ``` $ conda plugins list name: conda-auth description: Conda plugin for various conda auth handlers website: https://github.com/conda-incubator/conda-auth available at: conda-forge::conda-auth, defaults::conda-auth installed: no ... ``` #### Managing plugins For items 4 and 5, we will rely on the existing `conda install` and `conda remove` commands. In the future, we may wish to add new subcommands under the `conda plugins` namespace for this purpose (e.g. `conda plugins add <plugin>` and `conda plugins remove <plugin>`). ## Maintainers To help manage the plugin index, a new sub-team will be formed. This process is currently underway and can be tracked here: - https://github.com/conda/governance/issues/77 ### Rules for adding/removing plugins to the index For adding/removing plugins to the index the maintainers will adhere to one of the following rules: - Atleast 3 members voting, with all votes being "yes" - Atleast 50% participation, with greater than 50% "yes" votes to pass *These rules were copied from the [Nominate new member of a Community Project Team](https://github.com/conda/governance?tab=readme-ov-file#nominate-new-member-of-a-community-project-team) section of the conda goverance document* The votes will occur via pull requests in the [plugins](https://github.com/conda-incubator/plugins) repository and a special "conda-plugins-index" team will be assigned to review these pull requests. Each approval on the pull request will count as a single "yes" vote. A "request for changes" on the pull request will be counted as a single "no" vote. #### Examples Below are some practical examples of how voting may turn out with various team sizes: - 3 team members with all votes being yes; passing :heavy_check_mark: - 3 team members with one yes vote and two no votes; not passing :negative_squared_cross_mark: - 3 team members with two yes votes and one no vote; passing :heavy_check_mark: - 3 team members with two yes votes and one absentee vote; passing :heavy_check_mark: - 5 team members with three yes votes and two no votes; passing :heavy_check_mark: - 5 team members with three yes votes and two absentee votes; passing :heavy_check_mark: - 5 team members with two yes votes and three absentee votes; not passing :negative_squared_cross_mark:

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password

    or

    By clicking below, you agree to our terms of service.

    Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully