PHPackages                             coquibot/coqui-space-manager - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. coquibot/coqui-space-manager

ActiveLibrary

coquibot/coqui-space-manager
============================

Coqui Space integration — discover, install, and manage skills and toolkits from coqui.space

v0.1.0(2mo ago)0137↓100%MITPHPPHP ^8.4CI passing

Since Mar 7Pushed 2mo agoCompare

[ Source](https://github.com/carmelosantana/coqui-space-manager)[ Packagist](https://packagist.org/packages/coquibot/coqui-space-manager)[ RSS](/packages/coquibot-coqui-space-manager/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)Dependencies (4)Versions (3)Used By (0)

Coqui Space Manager
===================

[](#coqui-space-manager)

Coqui Space integration toolkit — browse, install, manage, and publish skills and toolkits from [coqui.space](https://coqui.space).

Installation
------------

[](#installation)

```
composer require coquibot/coqui-space-manager
```

The toolkit is auto-discovered by Coqui via `extra.php-agents.toolkits` in `composer.json`. No additional configuration needed.

Credentials
-----------

[](#credentials)

KeyRequiredDescription`COQUI_SPACE_API_TOKEN`OptionalAPI token from coqui.space — enables starring, publishing, and submissions`COQUI_SPACE_URL`OptionalCustom API base URL (default: `https://coqui.space/api/v1`)Set credentials via the Coqui `credentials` tool:

```
credentials(action: "set", key: "COQUI_SPACE_API_TOKEN", value: "cqs_...")

```

Most read operations work without authentication. Authentication is required for: `star`, `unstar`, `submit`, `publish`.

Tools
-----

[](#tools)

The toolkit provides three tools, grouped by entity type:

### `space_skills` — Skill Discovery &amp; Installation

[](#space_skills--skill-discovery--installation)

ActionParametersDescription`search``query`, `limit?`, `cursor?`Search skills by keyword`list``limit?`, `cursor?`, `sort?`, `tag?`Browse all skills with filters`details``owner`, `name`Full skill information`versions``owner`, `name`Version history`reviews``owner`, `name`Community reviews`file``owner`, `name`, `path`View a specific file from a skill`install``owner`, `name`, `version?`, `force?`Download and install a skill`update``name`Update an installed skill to latest`publish``name`, `description?`, `tags?`Publish a local skill to coqui.space### `space_toolkits` — Toolkit Discovery &amp; Installation

[](#space_toolkits--toolkit-discovery--installation)

ActionParametersDescription`search``query`, `limit?`, `page?`Search toolkits by keyword`list``limit?`, `cursor?`, `sort?`, `tags?`Browse all toolkits with cursor pagination`popular``limit?`, `page?`Browse popular toolkits`details``owner`, `name` or `package`Full toolkit information`reviews``owner`, `name`Community reviews`install``package`, `version?`Install via Composer`update``package`Update via Composer`publish``package`, `description?`, `tags?`Publish a toolkit to coqui.space### `space` — Management &amp; Social

[](#space--management--social)

ActionParametersDescription`installed``type?` (all/skills/toolkits)List all installed content`disable``name`Deactivate without removing`enable``name`Reactivate disabled content`remove``name`, `purge?`Uninstall (purge=true deletes permanently)`star``entity_type`, `owner`, `name`Star a skill or toolkit`unstar``entity_type`, `owner`, `name`Remove a star`submit``type`, `source_url`, `notes?`Submit a URL for review`tags``type?` (all/skills/toolkits)Browse available tags`search_all``query`, `limit?`, `cursor?`Unified search across skills and toolkits**Identifier convention:** Names containing `/` are treated as toolkits (Composer packages). Names without `/` are treated as skills (directory names).

Standalone Usage
----------------

[](#standalone-usage)

```
