{"id":47784523,"url":"https://github.com/itential/ipctl","last_synced_at":"2026-04-03T14:15:42.162Z","repository":{"id":341066252,"uuid":"927398702","full_name":"itential/ipctl","owner":"itential","description":"💻 Itential Platform CLI","archived":false,"fork":false,"pushed_at":"2026-03-20T14:19:05.000Z","size":6966,"stargazers_count":0,"open_issues_count":12,"forks_count":2,"subscribers_count":4,"default_branch":"main","last_synced_at":"2026-03-21T06:39:00.150Z","etag":null,"topics":["cli","go","itential","oss","terminal"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/itential.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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,"zenodo":null,"notice":"NOTICE","maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":"CLA.md"}},"created_at":"2025-02-04T22:16:15.000Z","updated_at":"2026-03-20T14:19:08.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/itential/ipctl","commit_stats":null,"previous_names":["itential/ipctl"],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/itential/ipctl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itential%2Fipctl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itential%2Fipctl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itential%2Fipctl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itential%2Fipctl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/itential","download_url":"https://codeload.github.com/itential/ipctl/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itential%2Fipctl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31356889,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-03T08:03:20.796Z","status":"ssl_error","status_checked_at":"2026-04-03T08:00:37.834Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["cli","go","itential","oss","terminal"],"created_at":"2026-04-03T14:15:41.109Z","updated_at":"2026-04-03T14:15:42.157Z","avatar_url":"https://github.com/itential.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 💻 ipctl\n\nA CLI for managing Itential Platform servers — get, create, import, export, and copy 35+ resource types from the command line.\n\n![ipctl version](assets/gifs/ipctl-version.gif)\n\n## Quick Start\n\n### Install\n\nDownload the latest release for your platform from the [releases page](https://github.com/itential/ipctl/releases):\n\n```bash\n# Linux x64\ncurl -LO https://github.com/itential/ipctl/releases/latest/download/ipctl-linux-x86_64.tar.gz\ntar -xzf ipctl-linux-x86_64.tar.gz\nsudo mv ipctl /usr/local/bin/\n```\n\n\u003cdetails\u003e\n\u003csummary\u003eBuild from source\u003c/summary\u003e\n\n```bash\ngit clone https://github.com/itential/ipctl.git \u0026\u0026 cd ipctl\nmake build\n./bin/ipctl --version\n```\n\n\u003c/details\u003e\n\n### Configure\n\nCreate `~/.platform.d/config.toml` with a server profile:\n\n```toml\n[\"profile default\"]\nhost = \"platform.example.com\"\nport = 443\nuse_tls = true\nusername = \"admin\"\npassword = \"your-password\"\n```\n\n### Use\n\n![ipctl workflow](assets/gifs/ipctl-workflow.gif)\n\n## Features\n\n| Feature | Description |\n|---------|-------------|\n| **Resource CRUD** | Get, create, update, and delete 35+ resource types |\n| **Import / Export** | Move assets via local directories or Git repositories with SSH auth |\n| **Multi-Instance** | Named profiles for managing multiple Platform servers |\n| **Authentication** | OAuth2 client credentials or basic auth with TLS |\n| **Output Formats** | Human-readable tables, JSON, YAML, or custom Go templates |\n| **Cross-Environment** | Copy automations, workflows, and assets between servers |\n\n## Configuration\n\n`ipctl` loads configuration from `~/.platform.d/config` by default. Supports INI, YAML, TOML, and JSON formats (auto-detected by file extension).\n\n### Profile Options\n\n| Option | Description | Default |\n|--------|-------------|---------|\n| `host` | Platform server hostname | `localhost` |\n| `port` | Server port (0 = auto from `use_tls`) | `0` |\n| `use_tls` | Enable TLS connection | `true` |\n| `verify` | Verify TLS certificates | `true` |\n| `username` | Basic auth username | - |\n| `password` | Basic auth password | - |\n| `client_id` | OAuth2 client ID | - |\n| `client_secret` | OAuth2 client secret | - |\n| `timeout` | Request timeout in seconds (0 = disabled) | `0` |\n\nAuthentication requires either `username`/`password` or `client_id`/`client_secret`.\n\n### Environment Variables\n\nOverride any profile value with `IPCTL_PROFILE_\u003cNAME\u003e_\u003cKEY\u003e`:\n\n```bash\nexport IPCTL_PROFILE_PROD_PASSWORD=secret\nipctl get projects --profile prod\n```\n\n### Precedence\n\nCLI flags \u003e environment variables \u003e config file \u003e defaults\n\nSee the [Configuration Reference](docs/configuration-reference.md) for complete details including multi-format examples.\n\n## Supported Resources\n\n| Category | Resources |\n|----------|-----------|\n| **Automation Studio** | projects, workflows, automations, templates, transformations, jsonforms |\n| **Admin** | accounts, groups, roles, adapters, integrations, prebuilts, tags |\n| **Configuration Manager** | devices, device-groups, configuration-parsers, gctrees |\n| **Lifecycle Manager** | models |\n\nSee the [Command Quick Reference](docs/commands-quick-reference.md) for the full matrix of supported operations per resource.\n\n## Usage Examples\n\n\u003cdetails\u003e\n\u003csummary\u003eWorking with projects\u003c/summary\u003e\n\n```bash\nipctl get projects\nipctl describe project \"My Project\"\nipctl create project \"New Project\" --description \"Project description\"\nipctl delete project \"Old Project\"\nipctl export project \"My Project\" \\\n  --repository git@github.com:org/repo.git \\\n  --branch main\n```\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003eWorking with automations\u003c/summary\u003e\n\n```bash\nipctl get automations\nipctl describe automation \"Deploy Config\" --output json\nipctl import automation \\\n  --repository https://github.com/org/automations.git \\\n  --reference v1.0.0\nipctl copy automation \"Deploy Config\" --from dev --to staging\n```\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003eWorking with adapters\u003c/summary\u003e\n\n```bash\nipctl get adapters\nipctl describe adapter \"ServiceNow\"\nipctl start adapter \"ServiceNow\"\nipctl stop adapter \"ServiceNow\"\nipctl restart adapter \"ServiceNow\"\n```\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003eOutput formats\u003c/summary\u003e\n\n![ipctl output formats](assets/gifs/ipctl-output-formats.gif)\n\n\u003c/details\u003e\n\n## Documentation\n\n- [Configuration Reference](docs/configuration-reference.md) — profile options, formats, environment variables\n- [Command Quick Reference](docs/commands-quick-reference.md) — operations matrix per resource\n- [API Command Reference](docs/api-command-reference.md) — detailed API command docs\n- [Working with Repositories](docs/working-with-repositories.md) — Git-based import/export\n- [Logging Reference](docs/logging-reference.md) — log levels, JSON output, sensitive data redaction\n- [Running from Source](docs/running-from-source.md) — development setup\n\n## Contributing\n\nContributions are welcome. See [CONTRIBUTING.md](CONTRIBUTING.md) for development setup, branch conventions, and the pull request process.\n\nAll contributors must sign the [Contributor License Agreement](CLA.md) before contributions can be merged.\n\n## License\n\nThis project is licensed under the [GNU General Public License v3.0](LICENSE).\n\n\n## Support\n\n- [GitHub Issues](https://github.com/itential/ipctl/issues)\n- [Itential Documentation](https://docs.itential.com)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitential%2Fipctl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fitential%2Fipctl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitential%2Fipctl/lists"}