Adds a POST /mcp endpoint (github.com/modelcontextprotocol/go-sdk) with
three tools mirroring the existing /calendar logic: get_calendar_today,
get_calendar_for_date and get_holidays. Bumps go.mod to Go 1.25 (required
by the SDK) and vendors the new dependencies. Also fixes an unanchored
.gitignore rule ("domogeek") that was silently excluding all untracked
files under cmd/domogeek/.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Hu8wwahgecuCGfesTKCfEd
33 lines
1.1 KiB
Go
33 lines
1.1 KiB
Go
// Copyright 2019 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
//go:build riscv64
|
|
|
|
package cpu
|
|
|
|
const cacheLineSize = 64
|
|
|
|
func initOptions() {
|
|
options = []option{
|
|
{Name: "fastmisaligned", Feature: &RISCV64.HasFastMisaligned},
|
|
{Name: "c", Feature: &RISCV64.HasC},
|
|
{Name: "v", Feature: &RISCV64.HasV},
|
|
{Name: "zba", Feature: &RISCV64.HasZba},
|
|
{Name: "zbb", Feature: &RISCV64.HasZbb},
|
|
{Name: "zbs", Feature: &RISCV64.HasZbs},
|
|
// RISC-V Cryptography Extensions
|
|
{Name: "zvbb", Feature: &RISCV64.HasZvbb},
|
|
{Name: "zvbc", Feature: &RISCV64.HasZvbc},
|
|
{Name: "zvkb", Feature: &RISCV64.HasZvkb},
|
|
{Name: "zvkg", Feature: &RISCV64.HasZvkg},
|
|
{Name: "zvkt", Feature: &RISCV64.HasZvkt},
|
|
{Name: "zvkn", Feature: &RISCV64.HasZvkn},
|
|
{Name: "zvknc", Feature: &RISCV64.HasZvknc},
|
|
{Name: "zvkng", Feature: &RISCV64.HasZvkng},
|
|
{Name: "zvks", Feature: &RISCV64.HasZvks},
|
|
{Name: "zvksc", Feature: &RISCV64.HasZvksc},
|
|
{Name: "zvksg", Feature: &RISCV64.HasZvksg},
|
|
}
|
|
}
|