{"id":16270363,"url":"https://github.com/alexsjones/shed","last_synced_at":"2026-04-18T09:32:46.080Z","repository":{"id":149512954,"uuid":"91017605","full_name":"AlexsJones/shed","owner":"AlexsJones","description":null,"archived":false,"fork":false,"pushed_at":"2017-06-04T08:46:08.000Z","size":5525,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-03T03:29:41.827Z","etag":null,"topics":["golang","scheduler","shell"],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AlexsJones.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-05-11T19:49:34.000Z","updated_at":"2017-05-12T18:37:41.000Z","dependencies_parsed_at":"2023-07-22T20:15:36.088Z","dependency_job_id":null,"html_url":"https://github.com/AlexsJones/shed","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AlexsJones/shed","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlexsJones%2Fshed","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlexsJones%2Fshed/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlexsJones%2Fshed/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlexsJones%2Fshed/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AlexsJones","download_url":"https://codeload.github.com/AlexsJones/shed/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlexsJones%2Fshed/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31963966,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T00:39:45.007Z","status":"online","status_checked_at":"2026-04-18T02:00:07.018Z","response_time":103,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["golang","scheduler","shell"],"created_at":"2024-10-10T18:10:26.495Z","updated_at":"2026-04-18T09:32:46.051Z","avatar_url":"https://github.com/AlexsJones.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"```\n\n_______________/\\\\\\________________________________/\\\\\\__        \n ______________\\/\\\\\\_______________________________\\/\\\\\\__       \n  ______________\\/\\\\\\_______________________________\\/\\\\\\__      \n   __/\\\\\\\\\\\\\\\\\\\\_\\/\\\\\\_____________/\\\\\\\\\\\\\\\\_________\\/\\\\\\__     \n    _\\/\\\\\\//////__\\/\\\\\\\\\\\\\\\\\\\\____/\\\\\\/////\\\\\\___/\\\\\\\\\\\\\\\\\\__    \n     _\\/\\\\\\\\\\\\\\\\\\\\_\\/\\\\\\/////\\\\\\__/\\\\\\\\\\\\\\\\\\\\\\___/\\\\\\////\\\\\\__   \n      _\\////////\\\\\\_\\/\\\\\\___\\/\\\\\\_\\//\\\\///////___\\/\\\\\\__\\/\\\\\\__  \n       __/\\\\\\\\\\\\\\\\\\\\_\\/\\\\\\___\\/\\\\\\__\\//\\\\\\\\\\\\\\\\\\\\_\\//\\\\\\\\\\\\\\/\\\\_\n        _\\//////////__\\///____\\///____\\//////////___\\///////\\//__\n  ```\n\n  Shell script scheduling.\n\n  Automate repetitive tasks and save them as a `Shedfile`\n\n  Offers `Shedfile` encryption so you can give a sensitive set of steps for someone to run\n  who you might not necessarily want to see all the steps\n\n  Hooya.\n  \n  Watch an example: http://showterm.io/bf94465cc57b34a5fcf36\n\n# Install\n```\ngo get github.com/AlexsJones/shed\n```\n\n  ```\n  clear      clear the current stack\n  exit       exit the program\n  help       display help\n  list       list execution order\n  load       Loads a local ShedFile into a schedule\n  logs       logs from an execution\n  push       push a k8s config-map path\n  retry      retry a certain action based on index\n  run        Starts running k8s config-map paths\n  save       Saves out a new ShedFile\n  ```\n\n  # Example\n\n  I want to automate a simple workflow for kubernetes deployment...\n\n```\n# In my kubernetes project directory\n\n\u003e\u003e\u003e push kubectl config view\nPushing -\u003e kubectl\n\u003e\u003e\u003e push ls\nPushing -\u003e ls\n\u003e\u003e\u003e list\n+------+------------------+-----------+----------+------------+\n| STEP | RESOURCE LOCATOR | VALIDATED | EXECUTED | SUCCESSFUL |\n+------+------------------+-----------+----------+------------+\n|    1 | kubectl          | ✓         | ✗        | ?          |\n|    2 | ls               | ✓         | ✗        | ?          |\n+------+------------------+-----------+----------+------------+\n\u003e\u003e\u003e push kubectl create -f .\nPushing -\u003e kubectl\n\u003e\u003e\u003e list\n+------+------------------+-----------+----------+------------+\n| STEP | RESOURCE LOCATOR | VALIDATED | EXECUTED | SUCCESSFUL |\n+------+------------------+-----------+----------+------------+\n|    1 | kubectl          | ✓         | ✗        | ?          |\n|    2 | ls               | ✓         | ✗        | ?          |\n|    3 | kubectl          | ✓         | ✗        | ?          |\n+------+------------------+-----------+----------+------------+\n\u003e\u003e\u003e save\nCreated new Shedfile...\n\u003e\u003e\u003e run\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falexsjones%2Fshed","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falexsjones%2Fshed","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falexsjones%2Fshed/lists"}