Class: MeetingExt

Inherits:
Clacky::ApiExtension show all
Defined in:
lib/clacky/default_extensions/meeting/handler.rb

Overview

Meeting Extension — real-time transcription, on-demand agent Q&A, and post-meeting summarization. Mounted at /api/ext/meeting/.

Constant Summary collapse

MEETINGS_ROOT =
File.expand_path("~/.clacky/meetings")
VOCABULARY_PATH =
File.join(MEETINGS_ROOT, "vocabulary.txt")
DEFAULT_VOCABULARY =
"Clacky, OpenClacky, openclacky"
WRITE_TOOLS =

annotate is a read-only analysis: block every side-effecting tool so the forked subagent can only read/think, never write files, run commands, spawn more work, or prompt the user.

%w[write edit terminal trash_manager invoke_skill request_user_feedback browser].freeze

Constants inherited from Clacky::ApiExtension

Clacky::ApiExtension::DEFAULT_TIMEOUT, Clacky::ApiExtension::HTTP_METHODS, Clacky::ApiExtension::MAX_TIMEOUT

Instance Attribute Summary

Attributes inherited from Clacky::ApiExtension

#params, #req, #res, #route

Method Summary

Methods inherited from Clacky::ApiExtension

#agent_config, class_timeout, compile_pattern, #config, #create_session, #data_path, #dispatch_to_session, #error!, ext_dir, #ext_dir, ext_dir=, ext_id, #ext_id, ext_id=, inherited, #initialize, #invoke, #json, #json_body, #logger, meta, meta=, normalize_pattern, pending_subclasses, public_endpoint, public_paths, #query, register, registry, #registry, reset_registry!, routes, #server_start_time, #session_manager, #submit_task, #text, timeout

Constructor Details

This class inherits a constructor from Clacky::ApiExtension