extensions-project-export

Modify export configurations for Madoc TypeScript projects.

57|15|Updated Nov 28, 2018
One-click install
npx skills add https://github.com/digirati-co-uk/madoc-platform --skill extensions-project-export
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: extensions-project-export
Source: https://github.com/digirati-co-uk/madoc-platform/tree/main/.agents/skills/extensions-project-export
Command: npx skills add https://github.com/digirati-co-uk/madoc-platform --skill extensions-project-export

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Developers need a clear way to create and modify export configurations for Madoc’s TypeScript project, allowing new export

...

Core Features & Use Cases

  • Export Config Registration: Register new export configurations through the project‑export registry.
  • File Output Helpers: Generate text, JSON, CSV, and ZIP files with proper metadata and naming.
  • Schema & Metadata Definition: Define configuration models and metadata for each export type.
  • Use Case: Add a new CSV export for project contributions, normalize tabular flags, and ensure the export plan produces correctly typed files.

Quick Start

Use the extensions-project-export skill to add a new export configuration by editing the extension.ts file and defining the config in types.ts.

Frequently Asked Questions about extensions-project-export

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I add a new export configuration to a Madoc TypeScript project?

To add a new Madoc export configuration, you edit the extension.ts file to register the config in the project-export registry and define the configuration model in types.ts, enabling new export plan types.

Can I generate CSV files from project contributions using Madoc export configs?

Yes, you can generate CSV files using the project-export file output helpers, which normalize tabular flags and ensure the export plan produces correctly typed files with proper metadata and naming.

What file formats are supported by Madoc project-export helpers?

Madoc project-export helpers support generating text, JSON, CSV, and ZIP files, requiring you to define valid file paths and content types for the generated exports within the TypeScript extension files.

Does the Madoc export config require updating TypeScript extension files?

Yes, modifying Madoc export configurations requires updating TypeScript extension files to handle registration, define config types in types.ts, and ensure valid file paths for generated exports.

What's the best way to define schema and metadata for a new Madoc export type?

The best way to define schema and metadata for a new Madoc export type is to declare the configuration model in types.ts and register it through the project-export registry in extension.ts.