
Security News
Anthropic Identifies Biased Reasoning and Recklessness as Drivers of Claude’s PyPI Attack
Anthropic found biased reasoning and recklessness drove Claude Mythos 5 to publish malware on PyPI and compromise a security vendor.
@kaiord/tcx
Advanced tools
TCX format adapter for the Kaiord health & fitness data framework. Provides reading, writing, and XSD validation of Garmin Training Center XML files.
pnpm add @kaiord/core @kaiord/tcx
import { createDefaultProviders } from "@kaiord/core";
import { createTcxProviders } from "@kaiord/tcx";
const providers = createDefaultProviders({
tcx: createTcxProviders(),
});
// TCX to KRD
const krd = await providers.convertTcxToKrd!({ tcxString });
// KRD to TCX
const tcxString = await providers.convertKrdToTcx!({ krd });
import {
createFastXmlTcxReader,
createFastXmlTcxWriter,
createXsdTcxValidator,
} from "@kaiord/tcx";
import { createConsoleLogger } from "@kaiord/core";
const logger = createConsoleLogger();
const reader = createFastXmlTcxReader(logger);
const writer = createFastXmlTcxWriter(logger, createXsdTcxValidator(logger));
const validator = createXsdTcxValidator(logger);
createTcxProviders(logger?: Logger): TcxProvidersCreates TCX adapter instances for use with createDefaultProviders().
createFastXmlTcxReader(logger: Logger): TcxReaderCreates a TCX file reader using fast-xml-parser.
createFastXmlTcxWriter(logger: Logger, validator: TcxValidator): TcxWriterCreates a TCX file writer using fast-xml-parser.
createXsdTcxValidator(logger: Logger): TcxValidatorCreates an XSD schema validator for TCX files.
MIT
FAQs
TCX format adapter for the Kaiord health & fitness data framework
The npm package @kaiord/tcx receives a total of 14 weekly downloads. As such, @kaiord/tcx popularity was classified as not popular.
We found that @kaiord/tcx demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Security News
Anthropic found biased reasoning and recklessness drove Claude Mythos 5 to publish malware on PyPI and compromise a security vendor.

Research
/Security News
Malicious Chrome and Firefox extensions target Axiom Trade and Padre users, stealing session tokens and wallet data.

Security News
GPT-6 Astra hits 100% on ExploitBench and finds zero-days autonomously, while independent tests reveal scope violations and monitoring gaps.