db-dump-cf

Export a 1C:Enterprise database configuration to a binary CF file.

151|20|Updated Feb 11, 2026
One-click install
npx skills add https://github.com/Arman-Kudaibergenov/1c-ai-development-kit --skill db-dump-cf-arman-kudaibergenov
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: db-dump-cf
Source: https://github.com/Arman-Kudaibergenov/1c-ai-development-kit/tree/main/.claude/skills/db-dump-cf
Command: npx skills add https://github.com/Arman-Kudaibergenov/1c-ai-development-kit --skill db-dump-cf-arman-kudaibergenov

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill solves the problem of reliably exporting a 1C:Enterprise configuration from a database into a binary CF backup file, so you can restore or checkpoint changes.

Core Features & Use Cases

  • CF Configuration Dump: Exports the configuration to a specified .cf file for backup and migration workflows.
  • Extension Export Options: Dumps a specific extension (.cfe by name) or all extensions (when requested).
  • Pre-change Checkpointing: Recommended as a control point before large configuration edits or risky refactors (e.g., major edits, restructuring, or deployment preparation).

Use case example: Before a large production change, dump the current configuration to config.cf, and if something goes wrong you still have a CF checkpoint to work from.

Quick Start

Ask the assistant to dump your current configuration with: /db-dump-cf dev config.cf

Frequently Asked Questions about db-dump-cf

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

FAQPage Schema
How do I export a 1C:Enterprise database configuration to a CF file?

To export a 1C configuration to a CF file, you need to resolve the 1cv8.exe path and target the database via InfoBasePath or server details. A PowerShell script then executes the binary configuration dump to your specified output path.

Can I dump 1C configuration extensions into a CF or CFE backup?

Yes, you can dump 1C configuration extensions by specifying an extension name to export it as a CFE file. Alternatively, you can request to dump all extensions from the targeted file-based or server-based database.

What is the best way to create a 1C configuration checkpoint before major changes?

Creating a 1C configuration checkpoint involves dumping the current database configuration into a binary CF file. This provides a safe restoration point to roll back to if risky refactoring or major edits cause issues.

Do I need PowerShell to create a 1C CF dump from the database?

Yes, a deterministic PowerShell script is required to execute the 1C configuration export. You also need to locate the 1cv8.exe executable, optionally using the V8Path parameter, to run the process.

How does the CF dump process identify the target 1C database?

The CF dump identifies the target database using InfoBasePath for file-based databases or InfoBaseServer and InfoBaseRef for server-based ones. It can also optionally resolve the target database using a .v8-project.json file.

Are there limitations when using a CF file backup for 1C migration preparations?

The CF file backup captures the 1C configuration but requires resolving the 1cv8.exe path and accurate database connection parameters. It serves as a configuration checkpoint rather than a full database data backup.