{"id":28454566,"url":"https://github.com/nottamion/commandclip","last_synced_at":"2026-05-17T01:33:24.446Z","repository":{"id":209074127,"uuid":"723167645","full_name":"notTamion/CommandClip","owner":"notTamion","description":"A Command Framework for Bukkit Plugins","archived":false,"fork":false,"pushed_at":"2024-01-04T15:01:48.000Z","size":152,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-15T06:49:26.778Z","etag":null,"topics":["bukkit","bukkit-plugin","command-fram","minecraft","paper-api","paper-plugin","papermc","spigot","spigot-api","spigot-plugin","spigotmc","tacos"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/notTamion.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2023-11-24T21:17:25.000Z","updated_at":"2024-06-11T19:35:19.000Z","dependencies_parsed_at":"2024-01-03T19:28:24.654Z","dependency_job_id":null,"html_url":"https://github.com/notTamion/CommandClip","commit_stats":null,"previous_names":["nottamion/commandclip"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/notTamion/CommandClip","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/notTamion%2FCommandClip","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/notTamion%2FCommandClip/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/notTamion%2FCommandClip/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/notTamion%2FCommandClip/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/notTamion","download_url":"https://codeload.github.com/notTamion/CommandClip/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/notTamion%2FCommandClip/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267632879,"owners_count":24118749,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-29T02:00:12.549Z","response_time":2574,"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":["bukkit","bukkit-plugin","command-fram","minecraft","paper-api","paper-plugin","papermc","spigot","spigot-api","spigot-plugin","spigotmc","tacos"],"created_at":"2025-06-06T19:14:39.541Z","updated_at":"2026-05-17T01:33:19.426Z","avatar_url":"https://github.com/notTamion.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CommandClip [![CommandClip Build Status](https://img.shields.io/github/actions/workflow/status/notTamion/CommandClip/publish.yml)](https://github.com/notTamion/CommandClip/actions) [![Latest Version](https://img.shields.io/maven-central/v/io.github.nottamion/commandclip)](https://central.sonatype.com/artifact/io.github.nottamion/commandclip/overview)\n\nA Command Framework for Bukkit Plugins\n\n## Dependency\n\n##### Gradle\n```kotlin\nrepositories {\n    mavenCentral()\n}\n\ndependencies {\n    compileOnly(\"io.github.nottamion:commandclip:1.1.0\")\n}\n```\n\n##### Maven\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003eio.github.nottamion\u003c/groupId\u003e\n    \u003cartifactId\u003ecommandclip\u003c/artifactId\u003e\n    \u003cversion\u003e1.1.0\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\nTo reduce the file size of your plugin its recommended to let spigot download the framework \nfor you. This also removes the need to shade the framework into your plugin jar.\n##### plugin.yml\n```yaml\nlibraries:\n  - io.github.nottamion:commandclip:1.1.0\n```\n\n## Usage\n\nDocumentation is currently being built at https://github.com/notTamion/CommandClip/wiki.\n\nFor now just take a look at the example below.\n\nHere is an example utilizing basic features:\n```java\nnew BaseCommand(\"hello\", this)\n    .subCommand(new SubCommand(\"there\")\n        .executes((commandSender, s, strings) -\u003e {\n            commandSender.sendMessage(s + \" there \" + strings[0]);\n        })\n        .tabCompletes((commandSender, s, strings) -\u003e strings.length == 1 ? Bukkit.getOnlinePlayers().stream().map(Player::getName).toList(): List.of())\n        .testArgs((commandSender, s, strings) -\u003e {\n            if (strings.length != 1)\n                return \"Please provide a valid playername\";\n            if (!Bukkit.getOnlinePlayers().stream().map(player -\u003e player.getName()).toList().contains(strings[0]))\n                return \"Player is not online\";\n            return null;\n        })\n        .permission(\"hello.there\", \"You aren't allowed to get a Welcome :(\"))\n    .alias(\"hi\")\n    .commandDescription(\"Welcomes you\")\n    .commandPermission(\"hello\")\n    .register();\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnottamion%2Fcommandclip","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnottamion%2Fcommandclip","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnottamion%2Fcommandclip/lists"}