title: "Jira and Linear Are Legacy Software" date: 2026-03-30 tags:
- content/youtube
- technology/ai-trends
- business/product
- productivity/automation
- ai/agents
- business/strategy
title: "Jira and Linear Are Legacy Software" date: 2026-03-30 tags:
| { | |
| "key": "cmd+q", | |
| "command": "runCommands", | |
| "args": { | |
| "commands": [ | |
| "workbench.action.terminal.kill", | |
| "workbench.action.terminal.new", | |
| { | |
| "command": "workbench.action.terminal.sendSequence", | |
| "args": { |
| import json | |
| import sys | |
| import subprocess | |
| import re | |
| try: | |
| input_data = json.loads(sys.stdin.read()) | |
| except json.JSONDecodeError as e: | |
| print(f"Error: {e}") | |
| sys.exit(1) |
| { | |
| "hooks": { | |
| "Notification": [ | |
| { | |
| "hooks": [ | |
| { | |
| "type": "command", | |
| "command": "afplay /System/Library/Sounds/Glass.aiff" | |
| } | |
| ] |
| { | |
| "hooks": { | |
| "PostToolUse": [ | |
| { | |
| "matcher": "Write|Edit|MultiEdit", | |
| "hooks": [ | |
| { | |
| "type": "command", | |
| "command": "yarn format" | |
| } |
| { | |
| "hooks": { | |
| "Notification": [ | |
| { | |
| "matcher": "", | |
| "hooks": [ | |
| { | |
| "type": "command", | |
| "command": "terminal-notifier -title 'Claude Code' -message 'Waiting for your input' -sound Glass" | |
| } |
| import * as Updates from 'expo-updates'; | |
| import * as SplashScreen from 'expo-splash-screen'; | |
| import { useEffect, useState } from 'react'; | |
| import { View, Text, StyleSheet } from 'react-native'; | |
| // 스플래시 화면 유지 | |
| SplashScreen.preventAutoHideAsync(); | |
| export default function App() { | |
| const [appIsReady, setAppIsReady] = useState(false); |
| { | |
| "key": "cmd+enter", | |
| "command": "runCommands", | |
| "args": { | |
| "commands": [ | |
| { | |
| "command": "git.stageAll" | |
| }, | |
| { | |
| "command": "cursor.generateGitCommitMessage" |
| # Frontend Design Guideline | |
| This document summarizes key frontend design principles and rules, showcasing | |
| recommended patterns. Follow these guidelines when writing frontend code. | |
| # Readability | |
| Improving the clarity and ease of understanding code. |
| import { createClient } from "https://esm.sh/@supabase/supabase-js@2.46.1"; | |
| import { generateObject, generateText, Output } from "npm:ai"; | |
| import { openai } from "npm:@ai-sdk/openai"; | |
| import { z } from "npm:zod"; | |
| const TitleOutput = z.object({ | |
| summary: z.string().describe( | |
| "대화에서 다룬 내용을 바탕으로 간단한 요약을 알려주세요", | |
| ), | |
| partner: z.string().describe( |