Flikk Site

Диагностика системы Flikk CMS

Параметр Значение Статус
PHP версия 8.3.6
Подключение к PostgreSQL Успешно
Название сайта Flikk Site
Тема оформления flikk
Режим отладки Включен
Сессия ID: bqj6j54qftd3jiqrjita79n80i
Таблица flikk_iblock_types 1 записей
Таблица flikk_iblocks 1 записей
Таблица flikk_sections 0 записей
Таблица flikk_elements 5 записей
Таблица flikk_properties 0 записей
Таблица flikk_property_values 0 записей
Таблица flikk_groups 1 записей
Таблица flikk_users 1 записей
Таблица flikk_user_groups 1 записей
Метод iblock/getList 1 инфоблоков
Метод element/getList 5 элементов (limit 5)

Тест компонента news.list

Иерархия промптов TG

Где и как настраивать промпты для клиентов и управляющих

26.02.2026

Архитектура TG-бота: цепочка файлов

Пошаговое описание полной цепочки обработки сообщений — от входящего TG-сообщения до ответа клиенту

27.02.2026

Ставки: где настраивать

Глобальная ставка и индивидуальная ставка клиента

26.02.2026

Структура файлов

flikk/
├── admin
│   ├── ai_bot_actions.php
│   ├── ai_bots.php
│   ├── ai_chat.php
│   ├── ai_chat2.php
│   ├── ai_chat_faleev.php
│   ├── ai_chat_kirill.php
│   ├── ai_chat_motorwagen.php
│   ├── ai_chat_multi.php
│   ├── ai_chat_obshiy.php
│   ├── ai_chat_old.php
│   ├── ai_chat_zonepro.php
│   ├── ai_logs.php
│   ├── ai_projects.php
│   ├── ai_settings.php
│   ├── ai_tasks.php
│   ├── ai_telegram.php
│   ├── ai_tg_accounts.php
│   ├── board.php
│   ├── bot_test.php
│   ├── calculator.php
│   ├── calculator_packages.php
│   ├── calculator_tasks.php
│   ├── calculator_test.php
│   ├── content.php
│   ├── elements.php
│   ├── groups.php
│   ├── iblocks.php
│   ├── index.php
│   ├── login.php
│   ├── login_as.php
│   ├── login_back.php
│   ├── logout.php
│   ├── sections.php
│   ├── settings.php
│   ├── structure.php
│   ├── tg_client_settings.php
│   └── users.php
├── cli
│   └── board_task.php
├── components
│   ├── flikk
│   │   ├── news.detail
│   │   │   ├── .default
│   │   │   │   └── template.php
│   │   │   └── class.php
│   │   └── news.list
│   │       ├── .default
│   │       │   └── template.php
│   │       └── class.php
│   └── flikk_admin
│       └── {users.list,users.edit,groups.list,groups.edit,iblocks.list,iblocks.edit,sections.list,sections.edit,elements.list,elements.edit,settings}
│           └── .default
├── config
│   ├── config.example.php
│   └── config.php
├── footer.php
├── header.php
├── install
│   ├── index.php
│   ├── migration_001_images_seo.sql
│   ├── migration_002_property_enums.sql
│   ├── migration_ai_projects.sql
│   ├── migration_ai_projects_patch1.sql
│   ├── migration_ai_settings.sql
│   ├── migration_ai_tasks.sql
│   ├── migration_ai_telegram.sql
│   ├── migration_ai_telegram_patch1.sql
│   ├── migration_ai_telegram_patch2.sql
│   ├── migration_ai_tg_patch3.sql
│   ├── migration_ai_tg_userbot.sql
│   ├── migration_board.sql
│   ├── migration_v2.sql
│   └── schema.sql
├── methods
│   ├── ai_project
│   │   ├── add.php
│   │   ├── delete.php
│   │   ├── getById.php
│   │   ├── getCount.php
│   │   ├── getList.php
│   │   └── update.php
│   ├── ai_settings
│   │   └── getAll.php
│   ├── ai_tasks
│   │   └── crud.php
│   ├── ai_telegram
│   │   ├── dialogs.php
│   │   └── getList.php
│   ├── ai_tg
│   │   ├── accounts.php
│   │   ├── clients.php
│   │   └── messages.php
│   ├── calculator
│   │   ├── calculate.php
│   │   ├── getCategories.php
│   │   ├── getStructure.php
│   │   └── getTasks.php
│   ├── element
│   │   ├── add.php
│   │   ├── delete.php
│   │   ├── getById.php
│   │   ├── getCount.php
│   │   ├── getList.php
│   │   └── update.php
│   ├── group
│   │   ├── add.php
│   │   ├── delete.php
│   │   ├── getById.php
│   │   ├── getCount.php
│   │   ├── getList.php
│   │   └── update.php
│   ├── iblock
│   │   ├── add.php
│   │   ├── delete.php
│   │   ├── getById.php
│   │   ├── getCount.php
│   │   ├── getList.php
│   │   └── update.php
│   ├── property
│   │   ├── add.php
│   │   ├── delete.php
│   │   ├── getById.php
│   │   ├── getList.php
│   │   └── update.php
│   ├── section
│   │   ├── add.php
│   │   ├── delete.php
│   │   ├── getById.php
│   │   ├── getCount.php
│   │   ├── getList.php
│   │   └── update.php
│   ├── stats
│   │   ├── getDashboard.php
│   │   └── getRecentElements.php
│   └── user
│       ├── add.php
│       ├── authorize.php
│       ├── check.php
│       ├── delete.php
│       ├── getById.php
│       ├── getCount.php
│       ├── getList.php
│       ├── loginAs.php
│       ├── setGroups.php
│       └── update.php
├── modules
│   ├── actions
│   │   ├── bash_run.php
│   │   ├── db_query.php
│   │   ├── file_edit.php
│   │   ├── index.php
│   │   ├── local_server.php
│   │   ├── nginx_config.php
│   │   ├── prod_server.php
│   │   └── tg_notify.php
│   ├── ai
│   │   ├── .installed
│   │   ├── board_processor.php
│   │   ├── bootstrap.php
│   │   ├── bot_names.php
│   │   ├── chat2_runner.php
│   │   ├── chat_faleev_runner.php
│   │   ├── chat_kirill_runner.php
│   │   ├── chat_motorwagen_runner.php
│   │   ├── chat_multi_runner.php
│   │   ├── chat_multi_runner_2.php
│   │   ├── chat_multi_runner_3.php
│   │   ├── chat_multi_runner_4.php
│   │   ├── chat_multi_runner_5.php
│   │   ├── chat_multi_runner_base.php
│   │   ├── chat_obshiy_runner.php
│   │   ├── chat_runner.php
│   │   ├── chat_zonepro_runner.php
│   │   ├── claude.php
│   │   ├── orchestrator.php
│   │   ├── runner_core.php
│   │   ├── task_collector.php
│   │   ├── task_estimator.php
│   │   ├── task_runner.php
│   │   ├── task_worker.php
│   │   ├── tg_log.php
│   │   ├── tg_runner.php
│   │   ├── ws_handler.php
│   │   └── ws_server.php
│   ├── ai_deploy
│   │   ├── deploy_callback.php
│   │   └── deploy_prompt.php
│   ├── ai_tg
│   │   ├── MadelineProto.log
│   │   ├── daemon.php
│   │   ├── handler.php
│   │   ├── handler_old.php
│   │   ├── incoming_processor.php
│   │   ├── orchestrator.php
│   │   ├── tg_auth_cli.php
│   │   ├── tg_auth_phone.php
│   │   └── tg_message_handler.php
│   ├── analyzer
│   │   ├── bootstrap.php
│   │   ├── callback.php
│   │   ├── permissions.php
│   │   └── prompt_builder.php
│   ├── antivirus
│   │   ├── bootstrap.php
│   │   ├── callback.php
│   │   ├── permissions.php
│   │   └── prompt_builder.php
│   ├── collector
│   │   ├── bootstrap.php
│   │   ├── callback.php
│   │   └── prompt_builder.php
│   ├── deployer
│   │   ├── bootstrap.php
│   │   ├── callback.php
│   │   ├── permissions.php
│   │   └── prompt_builder.php
│   ├── estimator
│   │   ├── bootstrap.php
│   │   ├── callback.php
│   │   ├── permissions.php
│   │   └── prompt_builder.php
│   ├── executor
│   │   ├── bootstrap.php
│   │   ├── callback.php
│   │   ├── permissions.php
│   │   └── prompt_builder.php
│   ├── notifications
│   │   └── helper.php
│   ├── sys
│   │   ├── component.php
│   │   ├── config.php
│   │   ├── db.php
│   │   ├── methods.php
│   │   ├── request.php
│   │   └── session.php
│   ├── tester
│   │   ├── bootstrap.php
│   │   ├── callback.php
│   │   ├── permissions.php
│   │   └── prompt_builder.php
│   ├── tg_client
│   │   ├── .installed
│   │   ├── actions
│   │   │   ├── approve_task.php
│   │   │   ├── confirm_delivery.php
│   │   │   ├── helpers.php
│   │   │   ├── need_manager.php
│   │   │   ├── negotiate_price.php
│   │   │   ├── project_autodeploy.php
│   │   │   ├── project_credentials.php
│   │   │   ├── project_missing.php
│   │   │   ├── reject_delivery.php
│   │   │   ├── reply_only.php
│   │   │   ├── task_create.php
│   │   │   ├── task_finalize.php
│   │   │   └── task_update.php
│   │   ├── bootstrap.php
│   │   ├── callback.php
│   │   ├── classifier
│   │   │   ├── json_parser.php
│   │   │   ├── mock.php
│   │   │   └── prompt_builder.php
│   │   ├── daemon
│   │   ├── debug_log.php
│   │   ├── manager
│   │   │   ├── intent.php
│   │   │   └── notify.php
│   │   ├── memory.php
│   │   └── processor
│   │       └── incoming.php
│   └── tg_manager
│       ├── bootstrap.php
│       ├── callback.php
│       ├── permissions.php
│       └── prompt_builder.php
├── prolog.php
├── prolog_after.php
├── prolog_before.php
└── templates
    ├── flikk
    │   ├── footer.php
    │   └── header.php
    ├── flikk_admin
    │   ├── footer.php
    │   └── header.php
    └── page.template.php