🚀 Quick Start Guide¶
Get up and running with LookAtni File Markers in minutes!
Your First Markers¶
Step 1: Try the Quick Demo¶
Experience LookAtni in action:
- Open Command Palette (
Ctrl+Shift+P) - Type:
LookAtni: Quick Demo - Press Enter and watch the magic happen!
This creates a sample HTML project and demonstrates the complete workflow.
Step 2: Generate Markers from Your Project¶
Transform your existing project into portable markers:
- Open your project in VS Code
- Command Palette →
LookAtni: Generate Markers - Select source folder (your project root)
- Choose output file (e.g.,
my-project-markers.txt) - Configure options (file filters, size limits)
- Generate! ✨
Step 3: Extract Markers Anywhere¶
Restore your project from markers:
- Get your markers file (
.txtfile from Step 2) - Command Palette →
LookAtni: Extract Files - Select markers file
- Choose destination folder
- Extract! Your project is restored perfectly
Real-World Example¶
Let's create a React project marker:
Create Sample React Project¶
# Create a simple React component
mkdir my-react-app
cd my-react-app
# Create package.json
echo '{
"name": "my-react-app",
"version": "1.0.0",
"dependencies": {
"react": "^18.0.0"
}
}' > package.json
# Create a component
mkdir src
echo 'import React from "react";
export function App() {
return (
<div>
<h1>Hello LookAtni!</h1>
<p>This project was packaged with LookAtni File Markers</p>
</div>
);
}' > src/App.jsx
Generate Markers¶
- Open
my-react-appin VS Code - Command Palette →
LookAtni: Generate Markers - Source:
./(current folder) - Output:
react-app-markers.txt - Exclude:
node_modules(default) - Generate!
Share and Extract¶
Your react-app-markers.txt file contains everything:
//␜/ package.json /␜//
{
"name": "my-react-app",
"version": "1.0.0",
"dependencies": {
"react": "^18.0.0"
}
}
//␜/ src/App.jsx /␜//
import React from "react";
export function App() {
return (
<div>
<h1>Hello LookAtni!</h1>
<p>This project was packaged with LookAtni File Markers</p>
</div>
);
}
Anyone can now extract this into a working React project!
Essential Commands¶
Primary Commands¶
| Command | Description | Shortcut |
|---|---|---|
LookAtni: Generate Markers | Create markers from files | Ctrl+Alt+G |
LookAtni: Extract Files | Extract files from markers | Ctrl+Alt+E |
LookAtni: Validate Markers | Check marker integrity | Ctrl+Alt+V |
LookAtni: Quick Demo | Run demonstration | Ctrl+Alt+D |
Quick Actions¶
| Command | Description |
|---|---|
LookAtni: Visual Markers | Toggle visual markers |
LookAtni: Show Statistics | Display project stats |
LookAtni: Open CLI Tools | Access CLI commands |
LookAtni: Configuration | Open settings |
Common Workflows¶
Code Review Workflow¶
- Generate markers for the feature branch
- Share markers file with reviewer
- Reviewer extracts and tests locally
- Provide feedback on the extracted code
Educational Workflow¶
- Create lesson project with examples
- Generate markers for distribution
- Students extract and follow along
- Include in course materials
Backup Workflow¶
- Generate markers for important projects
- Store markers files in cloud storage
- Extract when needed for recovery
- Version control your markers
Tips for Success¶
File Organization¶
- Use descriptive names for markers files
- Include version numbers (e.g.,
project-v1.2-markers.txt) - Add date stamps for time-based tracking
- Organize by project type or purpose
Best Practices¶
- Exclude large files (videos, binaries, dependencies)
- Use size limits to keep markers manageable
- Validate regularly to catch issues early
- Document your markers with comments
Performance Tips¶
- Generate incrementally for large projects
- Use file filters to focus on relevant code
- Split large projects into logical markers
- Monitor file sizes and optimize as needed
What's Next?¶
Now that you've mastered the basics:
- Explore Features - Dive deeper into capabilities
- Read Best Practices - Optimize your workflow
- Try Examples - Real-world use cases
- Check CLI Tools - Advanced automation
🎯 Pro Tip
Start small with a simple project, then gradually work up to complex workflows. LookAtni grows with your needs!