cqs 1.26.0

Code intelligence and RAG for AI agents. Semantic search, call graphs, impact analysis, type dependencies, and smart context assembly — in single tool calls. 54 languages + L5X/L5K PLC exports, 91.2% Recall@1 (BGE-large), 0.951 MRR (296 queries). Local ML, GPU-accelerated.
Documentation
#import <Foundation/Foundation.h>

@protocol Drawable <NSObject>
- (void)draw;
- (CGFloat)area;
@end

@interface Rectangle : NSObject <Drawable>

@property (nonatomic, assign) CGFloat width;
@property (nonatomic, assign) CGFloat height;

- (instancetype)initWithWidth:(CGFloat)width height:(CGFloat)height;
- (CGFloat)perimeter;

@end

@implementation Rectangle

- (instancetype)initWithWidth:(CGFloat)width height:(CGFloat)height {
    self = [super init];
    if (self) {
        _width = width;
        _height = height;
    }
    return self;
}

- (void)draw {
    NSLog(@"Drawing rectangle %fx%f", self.width, self.height);
}

- (CGFloat)area {
    return self.width * self.height;
}

- (CGFloat)perimeter {
    return 2 * (self.width + self.height);
}

@end

CGFloat calculateDistance(CGFloat x1, CGFloat y1, CGFloat x2, CGFloat y2) {
    CGFloat dx = x2 - x1;
    CGFloat dy = y2 - y1;
    return sqrt(dx * dx + dy * dy);
}