Sub-skill of obsidian: File Operations.
Scanned 9/9/2026
Install to Claude Code
npx -y skills add vamseeachanta/workspace-hub --skill file-operations --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of File Operations?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vamseeachanta-file-operations-workspace-hub)More formats (shields.io, HTML) on the badges page.
---
name: obsidian-file-operations
description: 'Sub-skill of obsidian: File Operations.'
version: 1.0.0
category: business
type: reference
scripts_exempt: true
---
# File Operations
## File Operations
<% tp.file.rename("New Name") %>
<% tp.file.move("Folder/Subfolder") %>
```
**Advanced Templater Template:**
```markdown
<%*
// Prompt for project details
const projectName = await tp.system.prompt("Project Name");
const priority = await tp.system.suggester(
["High", "Medium", "Low"],
["high", "medium", "low"],
false,
"Select Priority"
);
const dueDate = await tp.system.prompt("Due Date (YYYY-MM-DD)",
tp.date.now("YYYY-MM-DD", 30));
// Rename file
await tp.file.rename(projectName);
// Move to Projects folder
await tp.file.move(`Projects/${projectName}`);
-%>
---
*See sub-skills for full details.*
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Understand the components, mechanics, and constraints of context in agent systems. Use when designing agent architectures, debugging context-related failures, or optimizing context usage.