Installation 

Install via Composer 

composer require oliverkroener/ok-ai-writer
Copied!

This pulls the extension and its dependencies into your TYPO3 project.

Install from a local path 

If you develop the extension locally (e.g. in a packages/ directory), add it as a path repository in your project's composer.json:

{
    "repositories": [
        {
            "type": "path",
            "url": "packages/*"
        }
    ],
    "require": {
        "oliverkroener/ok-ai-writer": "@dev"
    }
}
Copied!

Then run:

composer update oliverkroener/ok-ai-writer
Copied!

Activate the extension 

After installing, set up and activate the extension:

vendor/bin/typo3 extension:setup
vendor/bin/typo3 database:updateschema
vendor/bin/typo3 cache:flush
Copied!

Verify the installation 

After activation, confirm the extension is loaded:

vendor/bin/typo3 extension:list | grep ok_ai_writer
Copied!

You should see ok_ai_writer in the output. The CKEditor plugins are now available for configuration.