Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

16 total results found

Evaluating AGENTS.md: Are Repository-Level Context Files Helpful for Coding Agents?

AI and ML

Paper: 2602.11988 Authors: Thibaud Gloaguen, Niels Mündler, Mark Müller, Veselin Raychev, Martin Vechev Published: February 2026 Summary This paper evaluates whether repository-level context files (like ) actually help coding agents perform better on real-worl...

Gemma 4

AI and ML

Gemma 4 Released March 31, 2026 by Google DeepMind. Apache 2.0 licensed. Multimodal (text + image, audio on small models). Model Sizes Model Type Effective Params Context Modalities E2B Dense 2.3B (5.1B w/ embeddings) 128K Text, Image, Audio E4B Dense...

Overview & Quick Start

Go Proton API Overview & Quick Start

Go Proton API Overview github.com/ProtonMail/go-proton-api is the official Go library implementing a client for (a subset of) the Proton REST API. It covers Mail, Contacts, Calendar, Drive Shares, and core account operations. Built on resty/v2 for HTTP communi...

Mail & Messages

Go Proton API Mail & Messages

Mail & Messages Complete mail operations: fetching messages (metadata + full bodies), labeling, marking read/unread/forwarded, deleting, creating/updating/sending drafts, importing messages, building RFC822 MIME messages, and encrypting/decrypting with PGP. Fe...

Contacts

Go Proton API Contacts, Calendar & Labels

Contacts CRUD operations for contacts and contact emails via /contacts/v4. Operations Get Contacts // Single contact by ID contact, err := c.GetContact(ctx, contactID) // Count contacts count, err := c.CountContacts(ctx) // Paginated listing contacts, err :=...

Calendar

Go Proton API Contacts, Calendar & Labels

Calendar Calendar and calendar event retrieval via /calendar/v1. Includes key management for encrypted calendar data. Operations Calendars // List all calendars calendars, err := c.GetCalendars(ctx) // Get a single calendar cal, err := c.GetCalendar(ctx, cale...

Labels & Addresses

Go Proton API Contacts, Calendar & Labels

Labels Label (category/folder) management via /core/v4/labels. Operations // Fetch labels filtered by type(s) labels, err := c.GetLabels(ctx, proton.LabelLabel, proton.LabelFolder) // Find a specific label by ID label, err := c.GetLabel(ctx, labelID, proton.L...

Attachments & Drive Shares

Go Proton API Attachments, Shares & Events

Attachments Attachment upload and download via /mail/v4/attachments. Upload attachment, err := c.UploadAttachment(ctx, addrKR, proton.CreateAttachmentReq{ MessageID: "message-id", Filename: "document.pdf", MIMEType: "application/pdf", Disp...

Real-time Events & User Account

Go Proton API Attachments, Shares & Events

Real-time Events Event polling and streaming for real-time notifications via /core/v4/events. Event Streaming // Get the latest event ID fromEventID, err := c.GetLatestEventID(context.Background()) // Create a new event streamer for event := range c.NewEventS...

Authentication & Sessions

Go Proton API Authentication & Sessions

Authentication & Sessions The library handles the full authentication lifecycle: SRP-based login, 2FA/FIDO2, token refresh, session management, and user creation. Login Methods SRP Login (Username/Password) Full Secure Remote Password login flow -- zero-knowle...

Configuring Custom Models: Vision & Parallel Tool Calls

Working with LLMs Agentic Engineering

Overview This page documents configuration patterns for using custom models (e.g. Qwen, custom fine-tunes) with LiteLLM as a proxy and OpenCode as the agentic frontend. When using non-standard models, both LiteLLM and OpenCode require explicit configuration to...

Generic Packages in CI/CD

Software Misc BookStack CLI

Forgejo (and Gitea) provide a generic package registry that allows you to publish arbitrary files from CI/CD pipelines — ideal for distributing compiled binaries, configuration files, or any static assets. Authentication Forgejo requires Basic authentication f...

Getting Started

Software Misc BookStack CLI

Getting Started Overview bookstack-cli-rs is a command-line interface for the BookStack API, written in Rust. It supports profile-based authentication, all CRUD operations for books/chapters/pages/shelves, and full-text search. Container filtering lets you nar...

CLI Reference

Software Misc BookStack CLI

CLI Reference Global Options Option Description -p, --profile <NAME> Profile name to use (uses default if not specified) Profiles Manage authentication profiles. profiles add Add a new profile with URL and API tokens. bookstack profiles add --name m...

Building tea CLI for Termux

Software Misc

Overview This documents the process of building the tea CLI (official Gitea CLI tool) as a Termux package for aarch64 Android devices. Prerequisites Docker installed with user in docker group termux-packages repository cloned Android NDK is handled automatica...

AI Agent Resources

AI and ML AI Agent Resources

This page collects useful resources for effective agentic engineering — tools, frameworks, and skills that make coding agents more capable, reliable, and productive. Each entry is something worth integrating into your agent workflow, whether as a skill, plugin...