In the loader configuration used here, a Cordis plugin module named-exports an `apply` function. When Cordis loads it, it calls `apply` with a **context** — the `ctx` object through which the plugin registers everything it contributes.
## Write the plugin
In your `tmp/cordis-tutorial` directory (see [setup](index.md#setup)), create `hello.ts`:
```ts
importtype{Context}from'cordis'
exportconstname='hello'
exportfunctionapply(ctx: Context){
console.log('hello from my first plugin')
}
```
The `name` export is optional display metadata; it labels the plugin in diagnostics.
## Compose the app
This tutorial's launcher assembles the application from configuration. Create `cordis.yml`:
The file is a list of plugin entries. `name` is a module specifier — a relative path or an npm package name — and the loader mounts every entry. Entries start concurrently, so list position guarantees nothing about which plugin loads first; ordering comes from service dependencies (`inject`, [chapter 3](03-services.md)), not from position in the file.
There is no framework bootstrap code in your file: a plugin describes what it contributes, and `cordis.yml` composes the application. The [TUI agent](../../apps/cli/config/tui.cordis.yml), for example, is a longer plugin composition.
A function is the most common shape, but Cordis accepts three:
```ts
import{Service,typeContext}from'cordis'
// 1. Function plugin (what you just wrote).
exportfunctionapply(ctx: Context){}
// 2. Object plugin: an object with an `apply` method.
exportconstobjectPlugin={
name:'object-plugin',
apply(ctx: Context){},
}
// 3. Class plugin: a Service subclass (covered in chapter 3).
exportclassMyServiceextendsService{
constructor(ctx: Context){
super(ctx,'myTutorialService')
}
}
```
Use the function form until you need to expose a service; [chapter 3](03-services.md) covers when the class form earns its place.
## Try breaking it
Make `apply` throw:
```ts ignore-check
export function apply(ctx: Context) {
throw new Error('apply exploded')
}
```
Run again: the process dies with your error. A plugin that fails to load is a loud failure, not a skipped entry.
One caveat worth knowing early: a config entry whose module cannot be **resolved** — a typo'd path or package name — is reported through the Cordis logger service instead of crashing the process, and at boot that report can be lost before a console exporter is watching. If a freshly added entry seems to do nothing, check the spelling first.
Next: [Lifecycle and effects](02-lifecycle-and-effects.md) — what happens when a plugin unloads.