This repository has been archived on 2026-03-09. You can view files and clone it, but cannot push or open issues or pull requests.
php-agentic/agentic.php
Snider b32d339a53
Some checks failed
CI / PHP 8.3 (push) Failing after 2s
CI / PHP 8.4 (push) Failing after 2s
feat: add agentic:scan, agentic:dispatch, agentic:pr-manage commands
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-04 14:43:22 +00:00

37 lines
1.1 KiB
PHP

<?php
return [
/*
|--------------------------------------------------------------------------
| Plan Retention Policy
|--------------------------------------------------------------------------
|
| Archived plans are permanently deleted after this many days. This frees
| up storage and keeps the database lean over time.
|
| Set to 0 or null to disable automatic cleanup entirely.
|
| Default: 90 days
|
*/
'plan_retention_days' => env('AGENTIC_PLAN_RETENTION_DAYS', 90),
/*
|--------------------------------------------------------------------------
| Forgejo Integration
|--------------------------------------------------------------------------
|
| Configuration for the Forgejo-based scan/dispatch/PR pipeline.
| AGENTIC_SCAN_REPOS is a comma-separated list of owner/name repos.
|
*/
'scan_repos' => array_filter(explode(',', env('AGENTIC_SCAN_REPOS', ''))),
'forge_url' => env('FORGE_URL', 'https://forge.lthn.ai'),
'forge_token' => env('FORGE_TOKEN', ''),
];